A property grid in jQuery

grid, jquery, propertygrid

Solution

jqGrid has support for creating a grid from local JavaScript objects or from a table tag embedded in the page (via `tableToGrid`).

Here are the general docs for jqGrid. The array info is under Loading Data.

Problem

I want to create a property grid like this: Ext JS Property Grid demo However I don't want to use extjs, and am using jQuery instead. What plugin would most easily enable to me create a propertygrid? jqGrid is the only one that I know of right now. http://www.trirand.com/blog/ I am not interested in loading data from XML file or database, I should be able to set data from objects on the page. Edit: I just realized that there is another plugin with the same name: http://jqframework.com/jqgrid/ Ohh namespacing fail.

Original source