EasyUI Forum
April 28, 2024, 09:52:58 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 ... 7
16  General Category / EasyUI for jQuery / Re: Resource planning / Display month in calendar in one line on: March 20, 2019, 06:27:49 AM
Thank you Jarry for the sample code! it can very well be used as a basis for further development.
17  General Category / EasyUI for jQuery / Resource planning / Display month in calendar in one line on: March 19, 2019, 09:23:46 AM
How can I use EasyUI plugins (a combination of datagrid and calendar) to be able to maintain a resource planning as shown in the attached image?

My concern is to display days of month (including weekdays & calendar week ) in one line for each employee.
An example to do so will be of great help.
18  General Category / EasyUI for jQuery / Re: EasyUI generated id for divs and spans on: March 04, 2019, 05:48:21 AM
Please try to update to version 1.6.11.
This change of 1.6.11 is not included in 1.7.4. The id of main html component is NOT existing as prefix in id of spans / divs that are generated by easyui. Please include it as we have adjusted all our tests based on 1.6.11.
19  General Category / EasyUI for jQuery / Re: EasyUI generated id for divs and spans on: January 07, 2019, 04:13:57 AM
Sorry for responding so late. I was on a vacation...

Thanks stworthy for a quick update on this topic. I have tested it with the latest version 1.7.1.

The generated ids now include id of main html component BUT it is only available for comboboxes. We have same issue with textboxes, menus, tree, datagrids and edatagrids (please see the attached images).

Will it possible to get the same done for all EasyUI components?

Thanks very much.
20  General Category / EasyUI for jQuery / EasyUI generated id for divs and spans on: December 14, 2018, 09:31:00 AM
We use selenium framework (https://www.seleniumhq.org/) for testing our EasyUI based frontend pages.

Our selenium based tests are run periodically under Firefox and IE browsers. These tests were implemented and tested when we were using the EasyUI version 1.5.4.1.

Recently we upgraded to version 1.6.10 and since then our tests aren't running anymore. To get the tests up and running, we had to adjust the way we locate easyui components.

In general easyui creates many additional divs and spans for each html component with a self generated id. The problem is, these generated ids are random and have no connection with the original id. This makes difficult to programmatically locate a particular html component in order to perform a click or select action on it.

Please see the attached file to get an idea of what we mean.

Would it be possible in upcoming versions of easyui to include the id of main html component as prefix in all ids of connected divs and spans?

Thanks for looking into this and for a feedback.
21  General Category / EasyUI for jQuery / Re: Components height has been increased after EasyUI upgrade on: December 10, 2018, 08:58:04 AM
Hello,

We found out that there is a difference between datagrid and edatagrid editorHeight values. Please refer the screen shot attached.

We had to extend edatagrid editorHeight as well to solve this issue:


if ($.fn.edatagrid){
      $.extend($.fn.edatagrid.defaults, {
         editorHeight: 24
      });
   }


Is there other plugin, which we should extend their editorHeight as well?

Thanks!
22  General Category / EasyUI for jQuery / Re: Datagrid filter doesn’t work on: December 07, 2018, 08:59:52 AM
We use customized filteroperator for remote filtering. Upto version 1.5.4.1 it was working without explicit decleration as operators.

In version 1.6.10 it works only when operators is extended:

Code:
$.extend($.fn.datagrid.defaults.operators, {
    myfilter: {
        text: 'myfilter',
        isMatch: function(source, value){
            return true;
        }
    }
});

The problem is solved!
23  General Category / EasyUI for jQuery / Datagrid filter doesn’t work on: December 05, 2018, 03:48:29 AM
Hello,

We have upgraded to EasyUI version 1.6.10 with latest datagrid-filter.js.
We are getting the following problems:
  • Remote filter doesn’t work, we get „TypeError: op is undefined“. Please refer to the first attachment.
  • In Firefox, filter fields have different height. Please refer to the second attachment.

Thanks
24  General Category / EasyUI for jQuery / Components height has been increased after EasyUI upgrade on: December 05, 2018, 02:48:53 AM
Hello,

We are currently using EasyUI version 1.5.4.1 and are wanting to upgrade to 1.6.10.
After this upgrade the components (menu items, datagrid-filter, etc) has been increased  In older version the default height of a menu button was 22px now it is 30px. Please refer the screen shot attached.
We would like to have the same height as before. How can we set this centrally for all components?

Thanks
25  General Category / EasyUI for jQuery / Combobx issue: default item selection when itemValue = 0 on: November 20, 2018, 11:37:35 PM
Hello,

I have set up a combobox with static data. The first item, which has 0 as value, is automatically selected.

 
  •   Why is this element by default selected?
  • How can I avoid this behavior?


For more details please have a look at this example http://jsfiddle.net/2491fkha/
 
Thanks.
26  General Category / EasyUI for jQuery / How to set a calendar current parameter with specific value? on: July 18, 2018, 04:43:09 AM
Hello,

When I set the current parameter of calendar with a specific value, today still selected as current date. How can this parameter set with a specific date?
For more details refer please to the following jsfiddle example. http://jsfiddle.net/na7z3t41/

Thanks!

27  General Category / EasyUI for jQuery / set timespinner min and max value within datetimebox on: June 27, 2018, 02:45:06 AM
Hello,

when in a datetimebox all selected dates must be between 8:30 and 17:30. How can be min and max values of timespinner set within this datetimebox component.

thanks!
28  General Category / EasyUI for jQuery / Get tooltip text on: June 13, 2018, 05:21:40 AM
Hello,

How can I get a tooltip text?  In order to display it dynamically.

thanks!
29  General Category / EasyUI for jQuery / Textbox onChange event will be triggered, despite its text has been not changed on: May 08, 2018, 04:13:00 AM
Hello experts,

I have a textbox, which contains a formatted text and button to set it in readonly mode. I used “\r” to format the text.

When the button is clicked, the onChange event will triggered. Despite I’ve not changed the original text.

Please have a look at the following example: http://jsfiddle.net/6hwwbptq/22/

How can be this issue resolved?

Thanks!
30  General Category / EasyUI for jQuery / Set window's height dynamically? on: April 30, 2018, 06:59:39 AM
Hello,

I have a window, which contains a button. A textbox will be added after each button click. In order to avoid the vertical scrollbar, is it possible to set the window’s height dynamically?
If yes,  how?

Thanks
Pages: 1 [2] 3 4 ... 7
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!