New pages
From Data Islands
- 21:48, 18 August 2025 Removeuseraccess (hist | edit) [164 bytes] WikiSysopdi (talk | contribs) (Created page with " Syntax : removeuseraccess <USERNAME> <ENTER> Description : Remove a user's access from current region.")
- 21:47, 18 August 2025 Adduseraccess (hist | edit) [805 bytes] WikiSysopdi (talk | contribs) (Created page with "'''Syntax''' : adduseraccess <USERNAME> <ACCESS SCOPE> <ENTER> Description : Add a user to allow access the current region. Premissions are controlled by passing access scope as read/readwrite/REST2read/REST2readwrite * read: Allows user to see the region in the console application, web app and RESI API (REST2read) * readwrite: Allows user the read access as well as the option to create and upload (Push/Export) data to islands in the given region using the console a...")
- 08:36, 14 August 2025 XERO JINT (hist | edit) [6,674 bytes] WikiSysopdi (talk | contribs) (Created page with " di.getguid("Accounts", "Name_Value") => Will pass "Name" and will get "AccountID" di.getguid("BankTransactions", "Reference_Value") => Will pass "Reference" and will get "BankTransactionID" di.getguid("BrandingThemes", "Name_Value") => Will pass "Name" and will get "BrandingThemeID" di.getguid("ContactGroups", "Name_Value") => Will pass "Name" and will get "ContactGroupID" di.getguid("Contacts", "Name_Value") => Will pass "Name" and will get "ContactID" di.get...")
- 14:16, 30 July 2025 Dropcolumn (hist | edit) [148 bytes] WikiSysopdi (talk | contribs) (Created page with "DropColumn: <nowiki>==========</nowiki> Syntax : dropcolumn <ISLANDNAME> "<columnname>" <ENTER> Description : Deletes a column from given island.") Tag: Visual edit
- 14:16, 30 July 2025 Updateisland (hist | edit) [186 bytes] WikiSysopdi (talk | contribs) (Created page with "UpdateIsland: <nowiki>============</nowiki> Syntax : updateisland <ISLANDNAME> "<columnname:columntype,...>" <ENTER> Description : Update the given island table by adding new columns.") Tag: Visual edit
- 20:46, 16 June 2025 CreateIsland (hist | edit) [272 bytes] 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);") Tag: Visual edit
- 15:36, 25 May 2025 HTTP Object (hist | edit) [604 bytes] WikiSysopdi (talk | contribs) (Created page with "The HTTP object is used to make HTTP requests to variosu web api's. Examples: Consuming a weather api<blockquote>jint di var req = HTTP(); req.Url="<nowiki>https://api.open-meteo.com/v1/forecast?latitude=52.52&longitude=13.405&hourly=temperature_2m</nowiki>"; req.Method="GET"; var response = req.Send(); var json = response.JSON; //REM show the full response di.display(response.body); //REM show part of the respone di.display(json.latitude);</blockquote>") Tag: Visual edit
- 15:27, 25 May 2025 Javascript Engine (hist | edit) [197 bytes] WikiSysopdi (talk | contribs) (Created page with "JINT mode is a function to allow you write more complex Javascript including API's and objects. It is ideal if you want to connect to any REST api that is not native and consume or publish to it.") Tag: Visual edit