Show Posts
|
Pages: [1]
|
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.
|
|
|
|