nachocalender problem
Hi,
I am nacho calender to use the calender functionality in my project.
everything is fine .I am able to successfully put it in the project.But I am not able to get the selected date into a varable to use further in the project.
import CalenderUtility.components.DateField;
static DateField d2 =null;
public DateField getCalender(){
d2 = CalendarFactory.createDateField();
d2.setShowOkCancel(true);
System.out.println(d2.isDisplayable());
return d2;
}
This is how I added to my panel.
MyPanel.add(getCalender(),null);
But how to capture the selected date into avariable to store selected date in database.There is no method provided in DateField class.
Please help me out.Urgent...
Thanks in advance.
Message was edited by:
tutikashilpa

