jQuery 中的属性网格
我想创建一个像这样的属性网格: Ext JS Property Grid demo
但是我不想使用 extjs,而是使用 jQuery。什么插件可以最轻松地帮助我创建属性网格?
jqGrid 是我目前所知道的唯一一个。 http://www.trirand.com/blog/
我对从 XML 加载数据不感兴趣文件或数据库,我应该能够从页面上的对象设置数据。
编辑:我刚刚意识到还有另一个同名插件: http://jqframework.com/jqgrid/
哦,命名空间失败。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在这个网站上创建了一个 jquery 属性网格
http://www.cssedit.co.uk/
这里是 js http://www.cssedit.co.uk/exemples/scripts/PropertyGrid.js,看看在 /exemples/SCRIPTS/STYLER.JS 了解我如何使用 javascript propertygrid
col
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
jqGrid 支持从本地 JavaScript 对象或嵌入在页面中的表格标签创建网格(通过 <代码>tableToGrid)。
以下是 jqGrid 的一般文档。数组信息位于“加载数据”下。
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.