|
Rank: Advanced Member Groups: Member
Joined: 2/1/2008 Posts: 35
|
Hi, I have just purchased the web controls and I am trying to bind a Date Picker Calendar to an AccessDataSource, the Calendar is in a FormView and I have no problem binding the datasource to a normal textbox. The Access database is formatted as Date/Time, Short Date. I have tried both Bind("VHCDate") & Bind("VHCDate","{0:d}")
When I try to load in the browser I get the following error: "Conversion from type Date to type Boolean is not valid"
Can somebody please tell me where I am going wrong, I have also tried formatting the database to text and number just in case but get different problems.
I am using VB if this helps.
Regards.
|
|
Rank: Advanced Member Groups: Member
Joined: 2/1/2008 Posts: 35
|
Hi I have sorted the bind issue, I didn't realise the other opti9ons in the bind method and had left it selected to enabled instead of date Selected.
However, I have another issue, as previously mentioned the control is in a FormView which is in an Ajax UpdatePanel, when I view in the browser, I can't select the image to allow the Calendar to show unless I add another Calendar control just in the Content Holder which I have to set to Visible = False, then I can click on the image without any problems.
Regards
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
The DatePicker is a DatePicker, it's neither a DateTime, nor a string, or any other simple type. So you can not assign any of these simple values to it directly. To assign value to the DatePicker, you should use either SelectedDate or SelectedDateAsString property.
Thanks
|
|
Rank: Advanced Member Groups: Member
Joined: 2/1/2008 Posts: 35
|
Actually to correct that, I have to set Visible = True or I can't click on the image.
Regards.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
|
|