EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: vgeorge10 on June 15, 2012, 10:40:10 AM



Title: Retrieve date entered from datebox
Post by: vgeorge10 on June 15, 2012, 10:40:10 AM
How do get the date entered from datebox. Checked the documentation, saw a setValue method, but no getValue(). Tried getValue anyways, but getting error saying method not supported, although combo, from which this is extended has getValue method.


Title: Re: Retrieve date entered from datebox
Post by: stworthy on June 16, 2012, 07:25:45 PM
Call 'getValue' can get the datebox value properly.
Code:
var v = $('#dd').datebox('getValue');
alert(v);