Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A property grid in jQuery

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.

like image 532
Jourkey Avatar asked Aug 29 '09 13:08

Jourkey


2 Answers

ive created a jquery property grid on this site

http://www.cssedit.co.uk/

heres the js http://www.cssedit.co.uk/exemples/scripts/PropertyGrid.js , have a look at /exemples/SCRIPTS/STYLER.JS for how i use the javascript propertygrid

col

like image 66
colin Avatar answered Nov 12 '22 17:11

colin


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.

like image 35
Hank Gay Avatar answered Nov 12 '22 17:11

Hank Gay