EasyUI Forum
November 29, 2025, 11:46:06 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 / Re: BUG tagbox in datagridfilter on: November 28, 2025, 12:09:43 PM
This is a global error. It works even with textbox, but only when resetting the value.

Code:
$(target).textbox('setValue', '');

I fixed it using only
Code:
                try {
                    $(target).textbox('setValue', value);
                } catch (e) {
                }
or
Code:
                try {
                    $(target).tagbox('setValues', value);
                } catch (e) {
                }
Does anyone have any ideas as to why this is happening?
2  General Category / EasyUI for jQuery / BUG tagbox in datagridfilter on: November 23, 2025, 10:20:45 AM
I use
Code:
    $.extend($.fn.datagrid.defaults.filters, {
        tagbox: {
            init: function (container, options) {
                var input = $('<input>').appendTo(container);
                input.tagbox($.extend({
                    selectOnNavigation: true,
                    panelHeight: 'auto',
                    hasDownArrow: true,
                    limitToList: true
                }, options || {}));
                console.log('init');
                return input;
            },
            setValue: function (target, value) {
                console.log('setValue');
                if (value) {
                    $(target).tagbox('setValues', value);

                } else {
                    $(target).tagbox('clear');
                }
            },
            getValue: function (target) {
                console.log('getValue');
                return $(target).tagbox('getValues');
            },
            resize: function (target, width) {
                console.log('resize');
                $(target).tagbox('resize', width);
            },
            destroy: function (target) {
                console.log('destroy');
                $(target).tagbox('destroy');
            }
        }
    });
$(target).tagbox('setValues', value); return bug
Code:
Uncaught TypeError: can't access property "textbox", $.data(...) is undefined
$(target).tagbox('clear'); return bug
Code:
Uncaught TypeError: can't access property "options", $.data(...) is undefined
3  General Category / EasyUI for jQuery / Re: tagbox in filter datagrid on: November 21, 2025, 05:40:42 AM
Super! Thank you.
4  General Category / EasyUI for jQuery / [SOLVED] tagbox in filter datagrid on: November 18, 2025, 09:01:15 AM
Code:
    $.extend($.fn.datagrid.defaults.filters, {
        tagbox: {
            init: function (container, options) {
                var input = $('<input>').appendTo(container);
                input.tagbox(options);
                return input;
            },
            getValue: function (target) {
                return $(target).tagbox('getValues');
            },
            setValue: function (target, value) {
                if (value) {
                    $(target).tagbox('setValues', value);
                } else {
                    $(target).tagbox('clear');
                }
            },
            resize: function (target, width) {
                $(target).tagbox('resize', width);
            }
        }
    });
Work but in delete tag - error Uncaught TypeError: can't access property "jQuery3310104949804947211292" of undefined
5  General Category / EasyUI for jQuery / FIX extension - DataGrid Filter Row on: November 16, 2025, 09:59:33 AM
Fix DataGrid Filter Row
1) Fix bug Uncaught TypeError: can't access property "resize", this.filter is undefined
2) Fix filterMenuIconCls is class eg. "far fa-check"
6  General Category / EasyUI for jQuery / Re: phpEasyUI - php wrapper for EasyUI without dependencies on: July 07, 2025, 05:36:26 AM
Wrapper upgrade to actual version EasyUI - 1.11.3
7  General Category / EasyUI for jQuery / Re: Howto overryde ajax method from POST to PUT in form on: March 26, 2025, 07:05:22 AM
Call this code before submitting a form to override any ajax parameters.
Code:
$.ajaxSetup({
  beforeSend: function(xhr, settings) {
    settings.type = 'PUT';
    return true;
  }
});
Thanks for your help!
8  General Category / EasyUI for jQuery / Howto overryde ajax method from POST to PUT in form on: March 20, 2025, 02:15:07 AM
Hi!
Howto overryde ajax method from POST to PUT in form submit methods?
9  General Category / EasyUI for jQuery / phpEasyUI - php wrapper for EasyUI without dependencies on: February 05, 2025, 05:40:47 AM
Hi everyone! I created a wrapper for EasyUI without dependencies!
https://github.com/Vladzimir/phpEasyUI
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!