EasyUI Forum
April 17, 2024, 06:53:07 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
1  General Category / Bug Report / Re: extension texteditor position inside a window on: September 14, 2021, 07:18:07 AM
Thank you Jarry, fit:true save the day!
2  General Category / Bug Report / extension texteditor position inside a window on: September 13, 2021, 10:37:02 AM
Hi, when I try use the extension texteditor inside a window in latest version o jeasyui (1.9.15) the texteditor become out of position I placed.

I tested with version 1.8.8 and there it works.

Thank you
3  General Category / Bug Report / Re: [SOLVED] Texteditor Bug with latest version on: September 13, 2021, 07:37:11 AM
Hi, a texteditor inside a window still have this bug,

JeasyUI 1.9.15
4  General Category / EasyUI for jQuery / Re: eayui combobox autocomplete queryparams on: November 14, 2019, 11:55:49 AM
Hi, try use the mode "remote"

Quote
mode   string   Defines how to load list data when text changed. Set to 'remote' if the combobox loads from server. When set to 'remote' mode, what the user types will be sent as the http request parameter named 'q' to server to retrieve the new data.
5  General Category / EasyUI for jQuery / Re: menu hover validatebox and change page (on Chrome) on: November 12, 2019, 04:28:20 AM
Well, I was using $('#obj').load to change content of panel, using $('#obj').panel({href: }) solves my problem
6  General Category / EasyUI for jQuery / Re: menu hover validatebox and change page (on Chrome) on: November 12, 2019, 04:06:41 AM
the issue may be related with menu hide before validatebox disappear, so he catch the event onMouseOver and show de tooltip and stay there forever...

I tested on Firefox, Opera and Chrome, this problem only happens on Chrome, always
7  General Category / EasyUI for jQuery / menu hover validatebox and change page (on Chrome)[SOLVED] on: November 11, 2019, 08:54:03 AM
Hi, I'm in a trouble, I found a bug when I using validatebox in a form and the user click on a menu over the validatebox to change page (with jquery load), the tooltip "This field is required" stay on the screen forever.

It's possible destroy the object of validatebox if it is not visible on screen? Or A menu hover validatebox not trigger the tooltip, because the field is not on focus.

It just happens on Chrome....  Undecided
8  General Category / EasyUI for jQuery / Re: DataGrid Filter Row Extension automatic filter problem on: December 13, 2018, 02:45:07 AM
This code does not execute when the 'filterDelay' is set to 0.

Thanks for you answer, I downloaded the latest source of datagrid-filter.js and the automatic filter continues executing with filterDelay = 0.
Looking on source a didn't found any condition related this, are you sure?

Thank you

 
9  General Category / EasyUI for jQuery / Re: DataGrid Filter Row Extension automatic filter problem on: December 12, 2018, 11:57:09 AM
Hi, setting filterDelay to 0 in the latest version not disabled the automatic filter in text fields.
I saw in datagrid-filter.js the follow code:

Code:
else if (opts.filterDelay){
this.timer = setTimeout(function(){
_doFilter();
}, opts.filterDelay);}



so filterDelay = 0 the setTimeOut is immediately....

Where can I get the latest version to disable automatic filter?

Thanks for advance
10  General Category / Bug Report / Re: extension datagrid-filter height differ from height themes sizes on: June 22, 2018, 06:25:15 AM
Thanks  Wink
11  General Category / Bug Report / extension datagrid-filter height differ from height themes sizes on: June 21, 2018, 08:57:29 AM
Hi, since version 1.5.5 tha size of textbox, combobox,datebox,etc increase from 22px to 25px, in the extension datagrid-filter, the textbox is ok, but combobox still 22px height.



Where I need change to fix?

Thanks for advance
12  General Category / News / Re: jQuery EasyUI 1.5.5 Release on: April 26, 2018, 09:27:09 AM
Hi, why the size of fonts and borders, padding, etc are increased in this last version?
13  General Category / EasyUI for jQuery / Re: datagrid inside a window doesn't show remote content (1.5.4) on: January 29, 2018, 06:03:21 AM
Oh Yes, 1.5.4.1 fixed the issue!

Thank you
14  General Category / EasyUI for jQuery / Re: datagrid inside a window doesn't show remote content (1.5.4) on: January 10, 2018, 09:34:12 AM
Ok thanks, maybe my problem is my dynamic tabs on window, I will check it, but works in 1.5.3  Wink
15  General Category / EasyUI for jQuery / Re: datagrid inside a window doesn't show remote content (1.5.4) on: January 10, 2018, 05:11:01 AM
It also works fine when set the 'url' property. http://code.reloado.com/alifev3/2/edit#preview

Ok, in your case, the loader function get a local data, and it works.

In my code to work I needed use the follow loader:

Code:
loader: function (param, succ, error) {
        var opts = $(this).datagrid('options');
        $.ajax({
            type: opts.method,
            url: opts.url,
            data: param,
            dataType: 'json',
            success: function (data) {
                setTimeout(function () {
                    succ(data);
                }, 10);
            }
        });
    }

without setTimeout function, the result is the same of first post.
In version 1.5.3 it doesn't happen.

Thanks for your help
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!