Problem integrating calendar with AW
I have the following calendar code:
that is supposed to be called like this:
as i created an AW.UI.Input to hold the date, what can i pass as a parameter to
Thanks.
function calendar2(obj_target) {
....
....
// validate input parameters
if (!obj_target)
return cal_error("Error calling the calendar: no target control specified");
if (obj_target.value == null)
return cal_error("Error calling the calendar: parameter specified is not valid target control");
that is supposed to be called like this:
var cal1 = new calendar2(document.forms['tstest'].elements['input1']);
as i created an AW.UI.Input to hold the date, what can i pass as a parameter to
new calendar2(...)
to not get an error?
Thanks.
Ecil
July 6,