CreateIsland

From Data Islands
Revision as of 20:46, 16 June 2025 by 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);")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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);