EasyUI Forum
April 29, 2024, 08:06:40 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: 1 2 [3] 4 5 ... 10
31  General Category / EasyUI for jQuery / Tree append node add class on: March 24, 2020, 12:22:27 AM
Hi there,

i need to append nodes to a tree and set css classes to the appended nodes.
How can i do that?

Thanks
32  General Category / EasyUI for jQuery / Hide Window without Closing on: February 07, 2020, 02:26:30 AM
Hi there,

is there a chance to completely hide a window (incl. title) without closing is (so i can show it again if needed)?
33  General Category / EasyUI for jQuery / Re: TagBox Autocomplete is unavailable with limitToList set to false on: January 30, 2020, 06:46:17 AM
nobody an idea?
34  General Category / EasyUI for jQuery / TagBox Autocomplete is unavailable with limitToList set to false on: January 29, 2020, 06:29:09 AM
Hi there,

i use a tagbox with mode='local' and limitToList=false for filtering the local data.
When set limitToList=true it is working but i can't enter manual entries.

How can this be resolved?


Thank you
35  General Category / EasyUI for jQuery / Re: Change component in editable Datagrid on: January 28, 2020, 03:18:33 AM
hi jarry,

thank you very much for your reply.
is onBeforeEdit just working as ment on before?
I need to change the editor of the third cell depending while editing the second cell combobox value.


Thanks again
36  General Category / EasyUI for jQuery / Change component in editable Datagrid on: January 27, 2020, 04:45:12 AM
Hi there,

i have an  editable datagrid with 3 cells. First and second is combobox. The third one is by default a textbox. It works fine so far.
Now i want to change in the third cell the component to tree or treegrid or whatever i want to use depending on the second cell (combobox value). How can i do that?

Thanks very much
37  General Category / EasyUI for jQuery / [SOLVED] Re: messager custom buttons on: December 30, 2019, 12:33:21 AM
Hi jarry,


this works great!!!


Thank you!
38  General Category / EasyUI for jQuery / messager custom buttons on: December 27, 2019, 02:42:42 AM
Hi there,

i have the following code:

Code:
        var dlg = $.messager.prompt({
            iconCls: 'icon-contacts',
            title: ' testtitle',
            msg: 'testmessage',
            shadow: false,
            buttons:[{
                value: true,
                plain: true,
                iconCls: 'icon-save',
                text: 'save',
                width: 150,
            },{
                plain: true,
                iconCls: 'icon-cancel',
                text: 'cancel',
                width: 100,
                value: false
            }],
            fn: function(r){
                if (r) {
                    alert(r);
                }
            }
        });

When clicking the buttons there is no function - why?
39  General Category / EasyUI for jQuery / Re: combogrid show image on: December 26, 2019, 02:34:35 AM
Wow jarry,

this is awesome!!!!!

THANK You so much!


Is there also a chance to use the clicked Item/Image as iconCls in a tree?
40  General Category / EasyUI for jQuery / combogrid show image on: December 25, 2019, 12:37:23 AM
Hi there,

i have a combogrid in which users can choose an image (see attached screenshot).
Is there a chance to show the image when user clicks instead of "data:image/png........"?

Thank yout
41  General Category / EasyUI for jQuery / Re: Update datagrid row in function on: December 18, 2019, 05:34:07 AM
This is awesome!!!!

Thank you stworthy!!!!
42  General Category / EasyUI for jQuery / Update datagrid row in function on: December 17, 2019, 11:30:18 PM
Hi there,

i want to update datagrid rows by calling a function with the field and value.
How can i use the field variable to update the row?

Code:
    function update_contact_row(field, value) {
        var rows = $('#table_contacts_contacts').datagrid('getRows');
        for (var i=0; i < rows.length; i++) {
            if (rows[i].id == "{{contacts_id}}") {
                $('#table_contacts_contacts').datagrid('updateRow', {
                    index: i,
                    row: {
                        $field: value
                    }
                });
            }
        }

    }
43  General Category / EasyUI for jQuery / Re: Get Keyup in combogrid on: November 20, 2019, 03:35:18 AM
Hi jarry,


works great - Thank you!!!
44  General Category / EasyUI for jQuery / [SOLVED] Get Keyup in combogrid on: November 19, 2019, 08:11:30 AM
Hi there,

how can we detect the keystrokes from user in a combogrid (textbox of it)?
 



Thanks
45  General Category / EasyUI for jQuery / Re: Tabs (special case) on: September 01, 2019, 01:37:38 AM
Hi worm6666,

thank you so much for your time and ideas.

I have found a working solution:
Now i am using a panel (fit:true) and use the tabs (tab Position:left) inside this panel.
With panel('onResize') event i get the width of the panel and can put this current with to tab headerWidth

It's working great - like i want to have it!


But again: Thank you for your time!!!
Pages: 1 2 [3] 4 5 ... 10
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!