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
1465
applyClientBinding doesn't exist?
posted

Hello.

I have Ultimate 11.2 and am trying to bind data to a webdatagrid on the client.

I've been all over the place and all the examples show a call the the grid's "applyClientBinding()" method.

However, when I run it I get the following error:

Microsoft JScript runtime error: Object doesn't support property or method 'applyClientBinding'

Here's my code ("result" is the result of an Ajax call and is an array of custom objects):

 

 

 

 

var wdg = $find('MyDataGrid');

 

 

 

 

 

if (wdg != null) {

wdg.set_dataSource(result);

wdg.applyClientBinding();

}

Please advise.

Thank you,

Mike