Así que he creado este widget jqueryui. Crea un div en el que puedo transmitir errores. El código del widget se ve así:
$.widget('ui.miniErrorLog', {
logStart: "<ul>", // these next 4 elements are actually a bunch more complicated.
logEnd: "</ul>",
errStart: "<li>",
errEnd: "</li>",
content: "",
refs: [],
_create: function() { $(this.element).addClass( "ui-state-error" ).hide(); },
clear: function() {
this.content = "";
for ( var i in this.refs )
$( this.refs[i] ).removeClass( "ui-state-error" );
this.refs = [];
$(this.element).empty().hide();
},
addError: function( msg, ref ) {
this.content += this.errStart + msg + this.errEnd;
if ( ref ) {
if ( ref instanceof Array )
this.refs.concat( ref );
else
this.refs.push( ref );
for ( var i in this.refs )
$( this.refs[i] ).addClass( "ui-state-error" );
}
$(this.element).html( this.logStart + this.content + this.logEnd ).show();
},
hasError: function()
{
if ( this.refs.length )
return true;
return false;
},
});
Puedo agregarle mensajes de error y referencias a elementos de la página que se pondrán en un estado de error. Lo uso para validar diálogos. En el método "addError" puedo pasar una sola identificación, o una matriz de identificaciones, como esta:
$( "#registerDialogError" ).miniErrorLog(
'addError',
"Your passwords don't match.",
[ "#registerDialogPassword1", "#registerDialogPassword2" ] );
Pero cuando paso una serie de identificaciones, no funciona. El problema está en las siguientes líneas (creo):
if ( ref instanceof Array )
this.refs.concat( ref );
else
this.refs.push( ref );
¿Por qué no funciona ese concat? this.refs y ref son matrices. Entonces, ¿por qué no funciona el concat?
Bono: ¿estoy haciendo algo más tonto en este widget? Es mi primero.