or
<telerik:GridTemplateColumn UniqueName="guarantyAmount" HeaderText="<%$Resources:Strings,amount %>"> <ItemTemplate> <asp:Label Text='<%# Eval("WARRANTY_AMOUNT")%>' runat="server" id="warrantyAmountText"> </asp:Label> </ItemTemplate> <EditItemTemplate> <telerik:RadNumericTextBox runat="server" id="warrantyAmount" ClientEvents-OnValueChanging="warrantyAmount_ValueChanging"></telerik:RadNumericTextBox> </EditItemTemplate> </telerik:GridTemplateColumn> <%--<telerik:GridBoundColumn DataField="REAL_VALUE" HeaderText='<%$Resources:Strings,realValue %>' UniqueName="guarantyRealValue"/>--%> <telerik:GridTemplateColumn UniqueName="guarantyRealValue" HeaderText="<%$Resources:Strings,realValue %>"> <ItemTemplate> <asp:Label Text='<%# Eval("REAL_VALUE")%>' runat="server" id="realValueText"> </asp:Label> </ItemTemplate> <EditItemTemplate> <telerik:RadNumericTextBox runat="server" id="realValue"></telerik:RadNumericTextBox> </EditItemTemplate> </telerik:GridTemplateColumn>
<telerik:RadCaptcha ID="RadCaptcha1" runat="server" ValidationGroup="SubmitInfo"
ErrorMessage="The code you entered is not valid." Display="Dynamic">
</telerik:RadCaptcha>
<asp:TextBox ID="txtemail" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" ValidationGroup="SubmitInfo"
runat="server" ControlToValidate="txtemail" ErrorMessage="Enter Email"></asp:RequiredFieldValidator>
<asp:Button ID="btnbooking" runat="server" ValidationGroup="SubmitInfo" Text="Submit"
OnClick="btnbooking_Click" />
Please help in the issue which i stucked for 3 days.
Urgent reply highly appreciable
Regards,
Prathap Narravula
if (e.Command == SchedulerNavigationCommand.NavigateToNextPeriod || e.Command == SchedulerNavigationCommand.NavigateToPreviousPeriod || e.Command == SchedulerNavigationCommand.NavigateToSelectedDate || e.Command == SchedulerNavigationCommand.SwitchToSelectedDay){ using (ServicoAnosLectivos servico = new ServicoAnosLectivos()) { DateTime[] datas = servico.GetDatasAnoLectivo(ServicoTabelasBaseSistema.GetAnoLectivoActual(true)); if (e.SelectedDate < datas[0] || e.SelectedDate > datas[1]) { e.Cancel = true; } }}