CreateIsland: Difference between revisions
From Data Islands
WikiSysopdi (talk | contribs) (Created page with "Example below showing how to manually create an island in code var table=CreateTable(); table.Columns.Add("fname"); table.Columns.Add("lname"); table.Rows.Add("James", "Joyce"); table.Rows.Add("John", "Steinbeck"); //append to the island di.push("writers", table);") |
(No difference)
|
Latest revision as of 20:46, 16 June 2025
Example below showing how to manually create an island in code
var table=CreateTable();
table.Columns.Add("fname");
table.Columns.Add("lname");
table.Rows.Add("James", "Joyce");
table.Rows.Add("John", "Steinbeck");
//append to the island
di.push("writers", table);