Hi Mahender,

please consider that when you instantiate a StaticGrid with the second parameter set as "true", the html is parsed before the constructor execution is completed, which means that all DOM elements must be present in the page. But this is not your case, since your the table is going to be populated only after the AJAX call has completed.

To fix this issue, you should pass "false" as second parameter and invoke the parseHtml later by other custom code, once the table has been built.

Let me know if this helps.

Regards, Gianluca