EasyUI Forum
May 03, 2024, 09:16:44 PM *
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]
31  General Category / General Discussion / DateBox: Italian week days on: April 18, 2015, 04:27:56 PM
I'd like to suggest you a little modification to italian locale file (easyui-lang-it.js), for week days of DateBox and DateTimeBox components.
The line:
Code:
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];

should be:
Code:
$.fn.calendar.defaults.weeks = ['D','L','M','M','G','V','S'];
32  General Category / EasyUI for jQuery / Re: Tag SELECT with SIZE on: March 31, 2015, 04:10:08 PM
Sorry, I'm blind. The answer is DataList component.
33  General Category / EasyUI for jQuery / Tag SELECT with SIZE on: March 31, 2015, 01:33:12 AM
I'd like to use in my form the SELECT tag with SIZE attribute (getting visually a kind of text area with multiple items selectable), but I don't want to loose the facilities of ComboBox EasyUI (loading data from remote, events etc...). It's possible?
34  General Category / EasyUI for jQuery / Re: Window inside layout on: March 10, 2015, 02:43:02 AM
Sorry. Today I'm blind. The solution is the "inline" property.
35  General Category / EasyUI for jQuery / Window inside layout on: March 10, 2015, 02:34:04 AM
I've a layout with north, center and south regions. It's possible open a window and move it only inside center region? I don't want the window overlaps south an north elements.
36  General Category / EasyUI for jQuery / Re: Close all windows on: May 28, 2013, 01:23:53 AM
Thanks, thanks, thanks. It works!
37  General Category / EasyUI for jQuery / Close all windows on: May 27, 2013, 08:54:03 AM
How can I close all opened easyui-windows?
I know the "close" method, but how to extract all window objects from the DOM?
38  General Category / EasyUI for jQuery / Re: Tooltip on datagrid cells on: May 10, 2013, 03:58:52 PM
Thanks joe. It works.
I found another way for this. It applies new easyui tooltip on every cell of specified datagrid.
This is the code:
Code:
var cells = $('#mygrid').datagrid('getPanel').find('div.datagrid-body td[field] div.datagrid-cell:not(:empty)');
cells.tooltip({
     position:'top',
     content: function() {
                var tp = $(this).html();
                return tp;
     } 
 });
39  General Category / EasyUI for jQuery / Tooltip on datagrid cells on: May 08, 2013, 10:47:00 AM
I create my datagrid on the fly with javascript code.
How can I apply new easyui tooltip plugin on datagrid cells?
Pages: 1 2 [3]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!