EasyUI Forum
May 18, 2024, 12:08:47 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 / Clone timespinnner control? on: July 26, 2020, 07:31:31 PM
Hi,

 How would one clone a timespinner control? I tried to follow the other clone example but couldn't get methods to
execute.

Thanks,
Tomas
2  General Category / EasyUI for jQuery / Re: cloning a control to a new control. [solved] on: July 24, 2020, 09:28:44 AM
How would you call the new control from markup?

Thanks,
Tomas
3  General Category / EasyUI for jQuery / Re: datagrid with footer - issues with formater on: June 04, 2020, 10:26:31 AM
I found a solution,
I added a check for a know field

Code:
                        formatter:function(value,row,index) {
                            if (typeof row.item === "undefined") {
                                return;
                            }

                            return row.item;
                        },

-Tomas
4  General Category / EasyUI for jQuery / datagrid with footer - issues with formater on: June 04, 2020, 09:11:13 AM
Hi,

  I'm having a issue with datagrid footer, and I use formatter on a field that value
now shows up in the footer.

Thanks,
Tomas
5  General Category / EasyUI for jQuery / More than one scrollview on a page? on: May 29, 2020, 02:58:33 PM
Hi,

  Is it possible to have more than one scrollview on a page?

Thanks,
Tomas
6  General Category / EasyUI for jQuery / Re: timepicker not working in datagrid on: May 21, 2020, 07:53:07 AM
Awesome! Thanks.
7  General Category / EasyUI for jQuery / timepicker not working in datagrid on: May 19, 2020, 12:44:58 PM
Hi,

  Is there a trick to get the timepicker to work in a datagrid?

Thanks,
Tomas
8  General Category / EasyUI for jQuery / combobox focus - on: May 11, 2020, 06:30:55 AM
Hi,

  I'm trying to attach a virtual keyboard to a combobox and I can't seem to figure out how to
get it to work.

The following code works
Code:
   $("span.textbox.easyui-fluid.numberbox > .textbox-prompt").focus(function() {
         $(this).getkeyboard().showKeySet("meta1");
   });

but as soon as add this
Code:
$('#PType').combobox({
                onSelect: function(rec){
                    console.log(JSON.stringify(rec))
                }
            });

  It no longer works.

Any suggestions would be great.

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