Merge pull request #1907 from victorsl/BUG-11086

BUG 11086 "Los datos introducidos despues de una fila vacia..." SOLVED
This commit is contained in:
julceslauhub
2013-07-22 13:13:34 -07:00

View File

@@ -132,6 +132,13 @@ Ext.onReady(function(){
};
}
if (blank == false) {
columnEditor.validator = function (text)
{
return (this.allowBlank == false && Ext.util.Format.trim(text).length == 0)? _("ID_FIELD_REQUIRED") : true;
};
}
column = {
id : tableDef.FIELDS[i].FLD_NAME,
header : tableDef.FIELDS[i].FLD_DESCRIPTION,