Categories | Question details Back To List | ||
validation hi team tahnks a lot for the previous answer i want to chek if all the fields in edited by the user in the data grid have a value (non empty) before saving in the dada base what type of code can i add in my following js fuction : function sendData () {myDataProcessor.sendData();} please help me thanks Answer posted by Support on Aug 05, 2008 08:11 You can a) use built in verificatiors //verify if the value of 2nd column (zero-based numbering is 1) is not empty b) use custom code as var ids=mygrid.getChangedRows().split(","); |