|
Title: Reset function on datebox Post by: ryupanqui on February 21, 2014, 09:07:51 AM I have a problem. I want to update the original value of datebox sometimes and then do reset. I do the following, but does not work.
Code: $datebox.datebox({ required:true });But this works in the combobox or combotree, for example. Code: $combo.combobox({ required:true });Title: Re: Reset function on datebox Post by: stworthy on February 24, 2014, 05:47:28 PM Please try the code below instead.
Code: $datebox.datebox({ required:true,value: '21/02/2014' }); |