Hi,
I am having problem with RadDatePicker when user manual (types into built in Dateinput box) enter date.
Here is details.
I have RadDatepicker control inside RadGrid EditItemTemplate and uses Shared Calendar:
Design :
<radG:GridTemplateColumn UniqueName="TemplateColumn" EditFormColumnIndex="1" HeaderText="Date"
DataField="TransactionDate" SortExpression="TransactionDate">
<HeaderStyle Width="110px" HorizontalAlign="Center" />
<ItemTemplate>
<asp:Label runat="server" ID="lbldate" Text='<%# Bind("TransactionDates") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<radCln:RadDatePicker ID="rdTransactionDate" runat="server" Width="110px" MinDate="1960/1/1"
MaxDate="2099/1/1" Calendar-Skin="Default2006" UseEmbeddedScripts="false">
<DateInput ></DateInput>
</radCln:RadDatePicker>
<asp:CustomValidator ID="cvTransactionDate" runat="server" ClientValidationFunction="CheckDate"
ControlToValidate="rdTransactionDate"></asp:CustomValidator>
</EditItemTemplate>
</radG:GridTemplateColumn>
Code:
Inside Grid ItemCreated event Calendar is assigned to Datepicker.
It works fine when date is change using Calendar but does not work when user type into dateinput box to change the date.
Initially I thought it might be due to Ajax setting ( I might have missed of the related settings) but I have also checked by removing all Ajax Manager setting and tested the situation but it still it did not work.
During my testing I found out following details:
OndateSeleted does not fire when User types the date to change it.
Please let me know if I am missing any settings here because it should fire when
1) User chooses as date from Pop Calendar
2) User types the date to change
I would highly appreciate if you could provide any details to solve this problem.
Thanks
I am having problem with RadDatePicker when user manual (types into built in Dateinput box) enter date.
Here is details.
I have RadDatepicker control inside RadGrid EditItemTemplate and uses Shared Calendar:
Design :
<radG:GridTemplateColumn UniqueName="TemplateColumn" EditFormColumnIndex="1" HeaderText="Date"
DataField="TransactionDate" SortExpression="TransactionDate">
<HeaderStyle Width="110px" HorizontalAlign="Center" />
<ItemTemplate>
<asp:Label runat="server" ID="lbldate" Text='<%# Bind("TransactionDates") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<radCln:RadDatePicker ID="rdTransactionDate" runat="server" Width="110px" MinDate="1960/1/1"
MaxDate="2099/1/1" Calendar-Skin="Default2006" UseEmbeddedScripts="false">
<DateInput ></DateInput>
</radCln:RadDatePicker>
<asp:CustomValidator ID="cvTransactionDate" runat="server" ClientValidationFunction="CheckDate"
ControlToValidate="rdTransactionDate"></asp:CustomValidator>
</EditItemTemplate>
</radG:GridTemplateColumn>
Code:
Inside Grid ItemCreated event Calendar is assigned to Datepicker.
It works fine when date is change using Calendar but does not work when user type into dateinput box to change the date.
Initially I thought it might be due to Ajax setting ( I might have missed of the related settings) but I have also checked by removing all Ajax Manager setting and tested the situation but it still it did not work.
During my testing I found out following details:
OndateSeleted does not fire when User types the date to change it.
Please let me know if I am missing any settings here because it should fire when
1) User chooses as date from Pop Calendar
2) User types the date to change
I would highly appreciate if you could provide any details to solve this problem.
Thanks