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):
if (wdg != null) {
wdg.set_dataSource(result);
wdg.applyClientBinding();
}
Please advise.
Thank you,
Mike
Hi Mike,Have you set EnableClientRendering to true? Have you included references to jquery core and jquery templating engine?
regards,David Young
Hi, David.
No, I didn't set EnableClientRendering to True. It's set now. Thanks.
As for jQuery, I have a reference to "jquery-1.4.1.min.js". Is there another reference that I need? Where do I get it?
Thanks,