Show Posts
|
|
Pages: [1]
|
|
2
|
General Category / EasyUI for jQuery / How to add and remove row in treegrid?
|
on: June 22, 2016, 03:22:46 AM
|
|
I found anwser for datagrid, but it not work with treegrid, please help me <a href="javascript:void(0)" onclick="javascript:$('#tg').edatagrid('addRow')">Add</a> <a href="javascript:void(0)" onclick="javascript:$('#tg').edatagrid('destroyRow')">Remove</a>
|
|
|
|
|
4
|
General Category / EasyUI for jQuery / How to use switchbutton in PropertyGrid?
|
on: June 16, 2016, 01:37:19 AM
|
|
I use only two value properties as 'true' & 'false'. How to do that? My code: rows = [ {field:"a",name:"jeasyui",value:"true",group:"Libraries", editor:{ type:"switchbutton", options: { valueField: "value", textField: "label", editable: false, data: test } } },
][/font]
|
|
|
|
|
6
|
General Category / EasyUI for jQuery / How to use multiple combo select in PropertyGrid ?
|
on: June 14, 2016, 02:29:15 AM
|
|
It work for DataGrid, but not work with PropertyGrid.
My code:
code = [ { "value": "", "label": "HTML" }, { "value": "", "label": "CSS" }, { "value": "", "label": "JAVASCRIPT" } ];
rows = [ [ {"field":"","name":"Web design","value":"","group":"Basic", "editor": { "type": "combobox", "options": { "multiple": true, "valueField": "value", "textField": "label", "data": code } } }, ]];
|
|
|
|
|