Hi,
When I load the radwindow for first time I want that one of my item in the Radlistbox with checkbox is checked. I'm getting that item value from the Main page. Currently with the below code I am able to select the row but the checkbox is not selected.
Client Side code
<telerik:RadListBox ID="Radlistbox" runat="server" CheckBoxes="true" Width="250px" Height="230px" DataSourceID="dsGetProducts" DataTextField="IDAndProduct" DataValueField="ProductID" Skin="Outlook" onitemcheck="Radlistbox_ItemCheck" AutoPostBack="true" OnClientItemChecked="OnClientItemChecked" OnClientSelectedIndexChanged="OnClientSelectedIndexChanged" > </telerik:RadListBox>
Server side
if (!Page.IsPostBack) { Radlistbox.SelectedValue = Session["ProductID"].ToString(); }
Thanks
Jessy
Every created appointment, there is gape in Appointment Scheduler slot. It is not show the full color in that appointment slot and it remain some space. It created a lot of problem when we try to manipulate lunch and block time. It created appointment in remaining gape area. It should not occurred this type of gape.
Also, I attached the related file of this problem.
Please help me as soon as possible.
Thanks
Best Regards
Mutum Jiten Singh
Akhil Systems
protected void rsAppointments_OnAppointmentDelete(object sender, AppointmentDeleteEventArgs e) { try { Appointment appToEdit = rsAppointments.PrepareToEdit(e.Appointment, rsAppointments.EditingRecurringSeries); appToEdit.Attributes["IsDeleted"] = "1"; rsAppointments.UpdateAppointment(appToEdit); ScriptManager.RegisterStartupScript(Page, GetType(), "alert", "alert('Appointment deleted successfully');", true); ViewState["Deleted"] = "1"; // upScheduler.Update(); } catch (Exception ex) { string ErrorMessage = ex.Message; SysLog.LogException(ex, MessageTypeEnum.DatabaseException, MessageSeverityEnum.Error); } }