Click here to Skip to main content
15,668,517 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have this below div which is kendo grid which i need to create it dynamically in javascript.

HTML
<pre><div kendo-grid id="tempGrid" hidden="hidden" k-options="meterGridOptions" k-rebind="columns"></div>


Any leads please !

What I have tried:

document.body.appendChild('<div kendo-grid id="tempGrid" hidden="hidden" k-options="meterGridOptions" k-rebind="columns"></div>');
Posted
Updated 26-May-17 6:38am

1 solution

Here's how such things are done: JavaScript HTML DOM[^]

Look at innerHTML and you'll be on your way.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900