Merge pull request #1907 from victorsl/BUG-11086
BUG 11086 "Los datos introducidos despues de una fila vacia..." SOLVED
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user