|
Title: How can numberbox inherit the properties such as title, placeholder from the ori Post by: kingor2001 on September 14, 2016, 07:40:55 AM How can numberbox inherit the properties such as title, placeholder from the original input element?
thanks. Title: Re: How can numberbox inherit the properties such as title, placeholder from the ori Post by: jarry on September 14, 2016, 07:29:42 PM You can define the 'prompt' and 'label' properties.
Code: <input class="easyui-numberbox" data-options="label:'Amount:',prompt:'Amount',min:10,max:90,precision:2" style="width:100%;"> Title: Re: How can numberbox inherit the properties such as title, placeholder from the ori Post by: kingor2001 on September 16, 2016, 10:08:09 AM thanks, the 'placeholder' works but the 'title' is still missing.
|