EasyUI Forum
April 30, 2024, 02:22:30 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: 1 [2]
16  General Category / EasyUI for jQuery / Re: show $.messager.alert problem in firefox on: January 09, 2018, 09:49:39 AM
Did you tested on Firefox? the problem occur  with you code too
17  General Category / EasyUI for jQuery / Re: datagrid inside a window doesn't show remote content (1.5.4) on: January 09, 2018, 09:23:42 AM
Hi, this example is not a remote content... the issue seems when url: parameter is present.

my code:

Code:
$('#listgroupsuser').datagrid({
    url: 'index.php?pg=getgroupsuser&uid=' + $('#uid').val(),
    singleSelect: true,
    toolbar: toolbargroup,
    height: 100,
    columns: [[
            {field: 'n', width: 20, fixed: true},
            {field: 'cn', title: 'Groups', width: 80}
        ]]
});

if use data works:

Code:
$('#listgroupsuser').datagrid({
    data: [{"n":1,"cn":"dev"},{"n":2,"cn":"Domain Users"},{"n":3,"cn":"esss"},{"n":4,"cn":"devjenkins"}],
    //url: 'index.php?pg=getgroupsuser&uid=' + $('#uid').val(),
    singleSelect: true,
    toolbar: toolbargroup,
    height: 100,
    columns: [[
            {field: 'n', width: 20, fixed: true},
            {field: 'cn', title: 'Groups', width: 80}
        ]]
});
18  General Category / EasyUI for jQuery / datagrid inside a window doesn't show remote content (1.5.4) on: January 09, 2018, 07:56:31 AM
Hi, I've just updated from version 1.5.3 to 1.5.4 and my datagrids located inside window doesn't show any content from a url... but if the datagrid is outside window, it works

If I comment line ur: 'url...' the columns shows but if not, the columns labels not appear.

I rollback to 1.5.3 and everything works again.
19  General Category / EasyUI for jQuery / Re: post combobox value as array to php(via form submit) on: November 17, 2017, 02:32:50 AM
Hi, my problem was JSON came from a json_encode($sqlqueryresult), I need change  SQL to "column AS `column[]`"
So now c[] === c[]

thanks
20  General Category / EasyUI for jQuery / Re: Extension texteditor in form on: November 16, 2017, 07:35:11 AM
Thank you! Grin
21  General Category / EasyUI for jQuery / Re: post combobox value as array to php(via form submit) on: November 16, 2017, 07:22:16 AM
Please use the code below instead.
Code:
   <select id="c" name="c[]" class="easyui-combobox textbox"     data-options='multiple:true,required:true' > 
      <option>a</option>
      <option>b</option>
      <option>c</option>
   </select>
How can I use .form('load' JSONDATA);, because c !== c[] and load don't work
22  General Category / EasyUI for jQuery / Re: Extension texteditor in form on: November 16, 2017, 03:13:24 AM
Thanks for answer, I know that to put a value in a texteditor I must use setValue, but when a texteditor is inside a form, and DATA is a json with all fields from form, the method .form('load',DATA) fulfill all fields but not fields with texteditor.
23  General Category / EasyUI for jQuery / [SOLVED] Extension texteditor in form on: November 14, 2017, 10:07:33 AM
Hi, is that possible load content in texteditor extension by .form('load',DATA); ?

Thanks for advance
24  General Category / Bug Report / datagrid inside a tab inside a window on: June 15, 2014, 08:42:47 AM
Hi, if I create a window with tabs and inside a tab I to put a datagrid, always appear errors on console javascript about undefined objects.
If I use the same tabs with datagrid, not in window, the errors don't occur.

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