EasyUI Forum
May 05, 2024, 04:42:24 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 ... 5
1  General Category / EasyUI for jQuery / How to set a tab or Tab Panel's minHeight and MinWidth? on: July 09, 2019, 10:22:24 PM
How to set a Tab or Tab Panel's minHeight and MinWidth? minHeight and MinWidth is useful for tab,panel,window,etc.
2  General Category / EasyUI for jQuery / How to set a tag's minHeight and MinWidth? on: July 07, 2019, 09:23:40 PM
How to set a tag's minHeight and MinWidth?
3  General Category / EasyUI for jQuery / A bug for resize of tagbox. on: June 27, 2019, 07:08:07 AM
A bug for resize of tagbox.
a tagbox such as <input class="easyui-tagbox" style="width: 100%">, its size(width) fits well while dragging current window border.
But it just does nothing when directly switching between the browser's Restore button and Maximize button.
The tagbox's width won't change to fit unless dragging window border again.
4  General Category / EasyUI for jQuery / How to get a CheckBox's checked/unchecked status? on: June 26, 2019, 06:00:17 AM
How to get a CheckBox's checked/unchecked status?
CheckBox need a method which can get the CheckBox's checked/unchecked status.
5  General Category / EasyUI for jQuery / How to highlight a tag with hover? on: June 22, 2019, 10:08:00 PM
How to highlight a tag with hover?
How to change the color of a clicking tag like tree's action?

I can now just deal as follows
t.next("span.textbox").on("mouseenter mouseleave", ".tagbox-label", function() {
         $(this).toggleClass('tagbox-hover');
      }).on("click", ".tagbox-label", function() {
         $(this).addClass('tagbox-selected').siblings().removeClass('tagbox-selected');
      });
6  General Category / EasyUI for jQuery / How to define a textbox-label's vertical-align? on: June 22, 2019, 10:03:07 PM
How to define a textbox-label's vertical-align? Now its vertical-align is only middle.
7  General Category / EasyUI for jQuery / How to prevent tagbox from accepting invalid tag? on: June 22, 2019, 09:07:51 PM
How to prevent tagbox from accepting invalid tag?
for example,
I want a tag's maxlength is 5, but the user input a tag such as 'easyui' which including 6 chars. I hope that tagbox NO ADD 'easyui' into values as a tag instead of showing a invalidMessage after added.
Now I deal as follow,
tagbox.textbox('textbox').bind('keydown', function(e){
   if (e.keyCode == 13){   
      tagbox.textbox('setValue', $(this).val().length>5?'':$(this).val());
   }
});
8  General Category / EasyUI for jQuery / validType:'length[0,10]' is invalid for tagbox? on: June 21, 2019, 11:03:27 AM
validType:'length[0,10]' is invalid for tagbox?
such as <input class="easyui-tagbox" data-options="label:'foo',validType:'length[1,2]'">, the length[1,2] is invalid.
9  General Category / EasyUI for jQuery / How to prevent a tagbox from accepting duplicate values? on: June 21, 2019, 08:20:12 AM
How to prevent a tagbox from accepting duplicate value?
I can input some duplicate values in a tagbox now, but sometimes I want the tagbox prevent from adding a new value which existing in tagbox's values.
10  General Category / EasyUI for jQuery / TagBox with Autocomplete is unavailable with limitToList set to false on: June 21, 2019, 06:17:18 AM
TagBox with Autocomplete is unavailable with "limitToList:false", unless "limitToList:false".
How to enable autocomplete with "limitToList:false"?
11  General Category / EasyUI for jQuery / How to add a tagbox(tagbox-label) by a method instead of manual operation? on: June 20, 2019, 11:09:12 PM
How to add a tagbox(tagbox-label) by a method instead of manual operation(input and return)?
12  General Category / EasyUI for jQuery / Re: How to remove the <a class="tagbox-remove" href="javascript:;"> of a TagBox? on: June 20, 2019, 09:51:31 PM
thanks, it done!
13  General Category / EasyUI for jQuery / a bug for non-editable TagBox on: June 20, 2019, 08:59:10 PM
If a TagBox set for "editable:fasle", such as
<input class="easyui-tagbox" data-options="label:'foo',editable:false">
after clicking the inputbox will show a big white panel.
14  General Category / EasyUI for jQuery / How to remove the <a class="tagbox-remove" href="javascript:;"> of a TagBox? on: June 20, 2019, 06:22:38 AM
How to remove the <a class="tagbox-remove" href="javascript:;"> of a TagBox?
This <a> is perhaps unuseful.
15  General Category / EasyUI for jQuery / textbox don't accept maxlength attr? on: June 19, 2019, 11:14:54 PM
such as
<input class="easyui-textbox"data-options="label:'foo'" maxlength="10">
this maxlength="10" don't work.
Pages: [1] 2 3 ... 5
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!