O componente de avaliação fornece uma entrada de classificação com base em estrelas.
$render[0]='alerta';
$resposta='
<span id="alerta" class="ui-growl-pl" data-widget="widget_alerta" data-summary="data-summary" data-detail="data-detail" data-severity="all,error" data-redisplay="true"></span>
<script id="alerta_s" type="text/javascript">
DinarteCoelho.cw("Growl", "widget_alerta", {
id: "alerta",
sticky: false,
life: 6000,
escape: true,
keepAlive: false,
msgs: [{
summary: "Avaliar evento",
detail: "Você avaliou '.$_POST['remoto_input'].'",
severity: "info",
severityText: "Information"
}]
});
</script>
';
dc.cw("Growl", "widget_alerta", {
id: "alerta"
, sticky: false
, life: 6000
, escape: true
, keepAlive: false
, msgs: []
});
dc.cw("Rating", "widget_basico", {
id: "basico"
});
dc.cw("Rating", "widget_remoto", {
id: "remoto"
, behaviors: {
cancel: function (ext, event) {
dc.ab({
s: "remoto"
, e: "cancel"
, f: "formulario"
, p: "remoto"
, u: "alerta"
}, ext);
}
, rate: function (ext, event) {
dc.ab({
s: "remoto"
, e: "rate"
, f: "formulario"
, p: "remoto"
, u: "alerta"
}, ext);
}
}
});
dc.cw("Rating", "widget_leitura", {
id: "leitura"
, readonly: true
});
dc.cw("Rating", "widget_desabilitado", {
id: "desabilitado"
, disabled: true
});