EasyUI Forum
November 04, 2025, 12:56:13 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / How to add action for Extra icons? on: June 28, 2016, 01:19:14 AM
I found Combobox used Extra icons, but i dont know how to add action for it. Please help me!
http://www.jeasyui.com/easyui/demo/combobox/icons.html

Ext: Add/Remove/Sort items?
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>
3  General Category / EasyUI for jQuery / Re: How to use switchbutton in PropertyGrid? on: June 20, 2016, 12:41:06 AM
I change $.fn.datagrid.defaults.editors to $.fn.propertygrid.defaults.editors and it work perfect !!
Thanks for the support !
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]
5  General Category / EasyUI for jQuery / Re: How to use multiple combo select in PropertyGrid ? on: June 15, 2016, 05:09:15 PM
Thank you!
I can do it Smiley
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
            }
         }      
      },
]];

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!