CreateIsland
From Data Islands
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);