EasyUI Forum
May 05, 2024, 12:16:50 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 / EasyUI for jQuery / Re: unselect linkbutton on: December 19, 2022, 11:45:32 AM
Try this:

Code:
$('#btn').linkbutton({selected:false});
2  General Category / EasyUI for jQuery / Re: PivoteGrid - Export data on: February 12, 2021, 07:50:28 AM
Thanks jarry !!!

There is a problem that persist, please see attached img.

3  General Category / EasyUI for jQuery / Re: PivoteGrid - Export data on: February 10, 2021, 10:27:59 AM
Hi Jarry, thanks for adding export method.
I'm having the same problem, the duplicated values when export, but the same occurs at Totals...

I´m exporting all rows:

Code:
$('#pg').pivotgrid('toExcel', {
filename: 'pivotgrid.xls',
worksheet: 'Worksheet',
caption: 'Caption'
});
4  General Category / EasyUI for jQuery / Re: Latest Chrome Causing Ajax Form Issues on: June 16, 2020, 05:53:29 AM
In my case, the problem occurs only in one form on entire system, this form is the greatest one (many fields plus parameters, over 100).
The only solution was use an array to pass some parameters in order to reduce quantity and the form beggin to work again.
5  General Category / EasyUI for jQuery / PivoteGrid - Export data on: March 05, 2020, 07:08:25 AM
Is posible export to excel ?

Thanks in advance.
6  General Category / EasyUI for jQuery / Re: Pager pagination pageSize all data on: October 18, 2018, 11:38:27 AM
Don´t use pagination  Smiley

7  General Category / EasyUI for jQuery / Re: Scheduler for refresh data in datagrid on: September 19, 2018, 09:43:20 AM
You can do this:

Code:
$(document).ready(function(){ 

    // execute every 5 minutes
    var qmin = 5;
    setInterval("$('#dg').datagrid('reload')", qmin * 60 * 1000);
}
8  General Category / Bug Report / Re: bug ? in datagrid with checkbox selection on: September 14, 2018, 07:06:20 AM
Upss.

Thanks sworthy
9  General Category / Bug Report / bug ? in datagrid with checkbox selection on: September 13, 2018, 12:59:06 PM
Hi, I have this problem with a datagrid with checkbox selection...

https://jsfiddle.net/martin_tinchi/0yLgwx1m/4/

1) Select some data and click button to display selected records - OK
2) Select all data by checking top checkbox
3) Click button to display selected records - NOT OK. Elements selected in step 1 repeated.

10  General Category / EasyUI for jQuery / Re: css :not on textbox-text on: August 21, 2018, 06:54:31 AM
Perfect !!!

Thanks stworthy !!
11  General Category / EasyUI for jQuery / css :not on textbox-text on: August 17, 2018, 07:16:12 AM
My HTML:

<input id="field1" name="field1" class="easyui-textbox" required="true" label="Abcd:" labelPosition="top">
<input id="field2" name="field2" class="easyui-textbox noupper" required="true" label="Wxyz:" labelPosition="top">

My css code:

.textbox-text:not(.noupper){
   text-transform:uppercase;
}

With this the uppercase does not apply to any textbox

If I use:

.textbox-text {
   text-transform:uppercase;
}

Apply to all textboxes.

 Huh Huh

Thanks in advance.
12  General Category / EasyUI for jQuery / Re: Combobox limitToList conflict on: June 01, 2018, 07:50:03 AM
Excelent !! Thanks.
13  General Category / EasyUI for jQuery / Combobox limitToList conflict on: May 22, 2018, 12:00:37 PM
I need some help ...

If I extend de combobox like this:

Code:
$.fn.combobox.defaults = $.extend({}, $.fn.combobox.defaults, {
selectOnNavigation: true,

inputEvents: $.extend({}, $.fn.combo.defaults.inputEvents, {
keyup: function(e) {
if (e.keyCode == 40) {
$(e.data.target).combobox('showPanel');
}
}
})
});

.. the limitToList stop working.

Thanks in advance.
14  General Category / EasyUI for jQuery / Re: Submit form and show results in a panel? on: May 22, 2018, 05:54:04 AM
If you use Chrome don´t need firebug, press F12 before you submit the form.
15  General Category / EasyUI for jQuery / How to determine if the filter is enabled in a datagrid on: May 09, 2018, 12:39:43 PM
I need to know when the filter is visible or not in a datagrid.

Thanks in 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!