Show Posts
|
Pages: 1 [2] 3 4 5
|
22
|
General Category / EasyUI for jQuery / help for textbox with readonly
|
on: October 31, 2017, 02:41:00 AM
|
When I set up a textbox as :<input class="easyui-textbox" data-options="readonly:true,buttonText:'test'"/>,the button that attached to the textbox is also disable because of the 'readonly:true'. How can only 'readonly' the input at the same time excluding the botton?
|
|
|
25
|
General Category / Bug Report / Re: bug in combobox in 1.5.2
|
on: October 26, 2017, 07:16:34 AM
|
This example works fine but the error message 'only numeric allowed.' still show at the combobox right position, at the same time the combobox's background-color is red(it means the validators fail?)
|
|
|
26
|
General Category / Bug Report / bug in combobox in 1.5.2
|
on: October 25, 2017, 08:18:07 AM
|
a. I set a combobox <input class="easyui-combobox" data-options="validType:['c_numeric']"></input> and init with data : [{ text: 'java', value: 0 },{ text: 'perl', value: 1 }] b. The 'c_numeric' is just a custom validate rule to the combobox, such as : $.extend($.fn.validatebox.defaults.rules, { c_numeric : { validator : function(value, param) { return value.match(/^[0-9]{1,}$/); }, message : 'only numeric allowed.' } }); c. This combobox works error with message('only numeric allowed.') though the value is numeric. d. It is a bug?
|
|
|
|