Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1280
Webdatagrid - Client side - Javascript functions - Equivalent for - find and findNext
posted

I understand that 

oCell = this.oGrid.Bands[0].getColumnFromKey(sColumn).find(re);

oCell = this.oGrid.Bands[0].getColumnFromKey(sColumn).findNext(re); 

needs to be corrected as 

oCell = this.oGrid.get_columns().get_columnFromKey(sColumn).find(re);

oCell = this.oGrid.get_columns().get_columnFromKey(sColumn).findNext(re); 

But looks that 'find' and 'findNext' are not present anymore. Could you please let me know wht are the equivalents?

Its critical. Please reply soon.

Parents Reply Children