EasyUI Forum
October 17, 2025, 08:24:34 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: Dynamic sizing on: November 22, 2018, 10:21:47 AM
In cases where resizing elements doesn't suffice, are there ways to restructure the layout (in this case) the grids, based on the device accessing the page?
2  General Category / EasyUI for jQuery / Dynamic sizing on: November 20, 2018, 02:22:59 PM
hello,

We are trying to dynamically assign sizing to datagrid, and its corresponding child elements, as we would like to show the grid on mobile devices. Please advise the correct method to begin creating this control.
3  General Category / EasyUI for jQuery / Re: Extension method returning just appended menu item? on: February 23, 2018, 09:26:07 AM
Building HTML as a string is even more complicated.
My problem is that Titles on menu items are not unique and also in 2 languages.

It looks like this:
DC Invoice
   DUNS: 1
   DUNS: 2
   Templates:
      Templ A
      Templ B
DSD Invoice
   DUNS: 1   
   Templates:
      Templ C


And if I search for ‘Templates:’ it finds the first one and it is wrong.
Is there a way to search by something else? Not the title?
May be some unique ID?

4  General Category / EasyUI for jQuery / Extension method returning just appended menu item? on: February 22, 2018, 11:04:12 AM
To avoid using findItem?
 
To do something like this:

var just_added = ('#mm').menu('appendItem', {
                   text: 'Open'
               });
               
               ('#mm').menu('appendItem', {
                   parent: just_added,
                   text: 'Invoice'
               });

               var po = ('#mm').menu('appendItem', {
                   parent: just_added,
                   text: 'PO'
               });

               ('#mm').menu('appendItem', {
                   parent: po,
                   text: 'DSD'
               });

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