EasyUI Forum
March 29, 2024, 06:23:20 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 ... 10
1  General Category / EasyUI for jQuery / Re: Problem using a combobox on a menubutton. on: March 07, 2021, 04:57:29 AM
Hi jarry,

first thank you for your help.

Your example works nearly perfect - but:
if you click in the combobox and move the mouse to another menu item the panel will shown on upper left corner.

You can see this issue in your example.

Is there a solution for that?
2  General Category / EasyUI for jQuery / Re: Problem using a combobox on a menubutton. on: March 04, 2021, 04:08:35 AM
Hi jarry,

thank you for your reply.

I can't get this to work.

First i have a menu-button with a menu.
In this menu i want a sub menu which contains the combobox.

Please see added screenshot.
3  General Category / EasyUI for jQuery / Re: Problem using a combobox on a menubutton. on: March 01, 2021, 02:34:11 AM
anybody an idea?
4  General Category / EasyUI for jQuery / Re: Problem using a combobox on a menubutton. on: February 25, 2021, 12:35:58 AM
Hi jarry,

what when i want to use the combobox in a nested menu?

Code:
    <div id='menu_options' class='easyui-menu'>
        <div>
            <span>priority2</span>
            <div class="menu-content" data-options="onShow: function(){alert('test')}">
                <input class="easyui-combobox" style="width: 100%;">
            </div>
        </div>
....
5  General Category / EasyUI for jQuery / Re: datagrid bufferview in tooltip not working on: January 07, 2021, 07:25:37 AM
Hi jarry,

thank you for your reply.

When is this new datagrid-bufferview.js - file an delete a row in the datagrid i get the following error:
Code:
datagrid-bufferview.js?__WB_REVISION__=0eaeddb23a1ecc2049c1bdbae5c3e0b4:184 Uncaught (in promise) ReferenceError: dc is not defined
    at Object.deleteRow (datagrid-bufferview.js?__WB_REVISION__=0eaeddb23a1ecc2049c1bdbae5c3e0b4:184)
    at _842 (jquery.easyui.all.js?__WB_REVISION__=2a23d606edf7d9c9cbca2025c065301e:11475)
    at HTMLTableElement.<anonymous> (jquery.easyui.all.js?__WB_REVISION__=2a23d606edf7d9c9cbca2025c065301e:12015)
    at Function.each (jquery-3.4.1.min.js?__WB_REVISION__=220afd743d9e9643852e31a135a9f3ae:2)
    at k.each (jquery-3.4.1.min.js?__WB_REVISION__=220afd743d9e9643852e31a135a9f3ae:2)
    at Object.deleteRow (jquery.easyui.all.js?__WB_REVISION__=2a23d606edf7d9c9cbca2025c065301e:12014)
    at Object.deleteRow (datagrid-filter.js?__WB_REVISION__=8c1aeced3ec602fc638e2524d758a9da:70)
    at k.datagrid (jquery.easyui.all.js?__WB_REVISION__=2a23d606edf7d9c9cbca2025c065301e:11648)
    at deleteReminder (<anonymous>:610:30)

6  General Category / EasyUI for jQuery / Re: datagrid bufferview in tooltip not working on: January 05, 2021, 06:49:32 AM
An other problem:

When rows are deleted by datagrid('deleteRow', index); the buffer scroll doesn't work anymore!
Any solutions for that?
7  General Category / EasyUI for jQuery / Re: datagrid cellediting on: January 05, 2021, 02:38:30 AM
Wow jarry,

works great!!!

Thank you so much!!!!
8  General Category / EasyUI for jQuery / Re: datagrid bufferview in tooltip not working on: January 05, 2021, 02:33:39 AM
Hi jarry,

thank you very much - this works!!

But if the datagrid in the tooltip has been shown it can't be reloaded by other data / rows.
How can the datagrid been updated?
9  General Category / EasyUI for jQuery / datagrid cellediting on: January 04, 2021, 01:57:25 PM
hi there,

i am using a datagrid with cellediting. I have a combobox in each row to select an record.
What i want to do is that on click or select a record in each combobox to end editing and save the edited row. How can i achive this by using the onSelect - Event of the combobox?


Thanks a lot!!!
10  General Category / EasyUI for jQuery / datagrid bufferview in tooltip not working on: January 01, 2021, 11:29:42 PM
Hi there,

i am using a datagrid with bufferview inside a tooltip. When i scroll down the datagrid the rows do not load when the datagrid is placed in a tooltip. is there a solution?
11  General Category / EasyUI for jQuery / Re: textbox or searbox in menu as menu item on: December 28, 2020, 12:25:20 AM
Thank you very much - jarry

That works!
12  General Category / EasyUI for jQuery / Re: textbox or searbox in menu as menu item on: December 26, 2020, 11:42:41 AM
hi jarry,

i'm sorry but there is an issue if there is a sub menu in the menu with the input like that:
Code:
<div id="menuMain" class="easyui-menu menu-content" data-options="onShow:function(){showMainMenu();}" style="height:90px; padding: 0">
    <div id="menuSubMain" class="easyui-menu" data-options="inline: true, border: false" style="width: 100%;">
        <div iconCls="icon-administration">
            <span id="mainMenuItemAdministration"></span>
            <div>
                <div onclick="addWindow({module:'contacts', action:'admin'})" iconCls="icon-contacts"><span id="mainMenuItemAdministrationContacts"></span></div>
                <div class="menu-sep"></div>
                <div iconCls="icon-orders"><span id="mainMenuItemAdministrationOrders"></span></div>
                <div class="menu-sep"></div>
                <div onclick="addWindow({module:'timerecording', action:'admin'})" iconCls="icon-workinghours"><span id="mainMenuItemAdministrationTimerecording"></span></div>
            </div>
        </div>
    </div>
    <div style="margin-left: 30px; margin-right: 5px; margin-top: 10px;"><input id="inputGlobalSearch" class="easyui-searchbox"></input></div>
</div>

The Submenu disappears when moving the mouse to the submenu and on mobile devices the hole menu disappears when klicking in the searchbox and the keyboard appears.

Any ideas for that?
13  General Category / EasyUI for jQuery / Re: textbox or searbox in menu as menu item on: December 25, 2020, 01:57:35 AM
WOW jarry!!!!

This is awesome!

Works like a charme!!!!


Happy christmas to you!
14  General Category / EasyUI for jQuery / textbox or searbox in menu as menu item on: December 23, 2020, 01:35:30 PM
Hi there,

is there a chance to have a textbox or searchbox in a menu?

Thanks a lot!
15  General Category / EasyUI for jQuery / Re: dialog as jquery popup function on: November 08, 2020, 01:29:48 PM
Hi WizPS,

maybe you have to parse the component after creating with

$.parser.parse(your component id, class, etc);


Greetings,

sky-t
Pages: [1] 2 3 ... 10
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!