Skip to content
billreed63 edited this page Jun 6, 2011 · 5 revisions

Data Grid

Dojo DataGrid is a complex widget that constructs a table using a structure definition of the table and a data store to populate the table. Maqetta currently supports structure definition of the DataGrid my use of the "structure" parameter to data grid. Currently we only support creating muckup data for data grid from "inline edit" in the form of CSV data.

  header 1, header 2
  data 1.1, data 2.1
  data 1.2, data 2.2

The data input by the user is stored in the "data" parameter of a ItemFileReadStore, if the user choices include HTML data we set the escapeHTMLInData parameter of the DataGrid.

Future functionality:

Support data from URL data store issue #80

To support this feature the user interface for inline edit will need to be redesigned to support:

  • Data in the for of CSV:

  • Data from user workspace URL:

  • Data from absolute URL:

Users need to set properties on sub-items issue #79

Clone this wiki locally