Hello. I have a radgrid with a nestedviewtemplate set up so that another rad grid is shown when each row of data is expanded. I have a button within each row on the grid inside the nestedviewtemplate, and that button needs to make a div visible that is outside of both radgrids. However, I cannot for the life of me get the div to appear. I currently have the following for the RadAjaxManager:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadGrid1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1" /> <telerik:AjaxUpdatedControl ControlID="pnlAddEdit" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadGrid2"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGrid2" LoadingPanelID="RadAjaxLoadingPanel2" /> <telerik:AjaxUpdatedControl ControlID="pnlAddEdit" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>
<telerik:RadListBox ID="EmployeesComplianceLevel" runat="server" Width="100%" OnClientSelectedIndexChanged="EmployeesComplianceLevelChanged" style="margin-bottom: 10px"> <ItemTemplate> <font color="black"><%# DataBinder.Eval(Container, "Text")%> </font> </ItemTemplate> </telerik:RadListBox>
RadListBoxItem listitem1 = new RadListBoxItem(); listitem1.Value = "1"; listitem1.Attributes.Add("Text", "one"); EmployeesComplianceLevel.Items.Add(listitem1); RadListBoxItem listitem2 = new RadListBoxItem(); listitem2.Value = "2"; listitem2.Attributes.Add("Text", "two"); EmployeesComplianceLevel.Items.Add(listitem2); RadListBoxItem listitem3 = new RadListBoxItem(); listitem3.Value = "3"; listitem3.Attributes.Add("Text", "three"); EmployeesComplianceLevel.Items.Add(listitem3); EmployeesComplianceLevel.DataBind(); foreach (RadListBoxItem item in EmployeesComplianceLevel.Items) item.DataBind();<telerik:RadAsyncUploadID="AsyncUploadMessageAttachments"TemporaryFileExpiration="04:00:00"CssClass="uploadPosition"runat="server"Width="250px"></telerik:RadAsyncUpload>
May 25,Yesterday after the update control
Radcombobox floating judge wrong
Update ago are correct
With offsetx can't move position
how to deal with
thank you
var tree = $find(this.treeviewId); var count = tree.get_nodes().get_count(); for (var i = 0; i < count; i++) { tree.get_nodes().remove(tree.get_nodes().getNode(0)); } Hello,
When going into edit mode of an appointment, a small popup is shown before editing. In this popup I get the choice to :
Edit only this occurrence, Edit the series. I would like to bypass this popup.
Now, I've seen other posts about this with this solution :
1.OnClientAppointmentClick="editAppointment"1.function editAppointment(sender, e) { 2.var apt = e.get_appointment(); 3.sender.editAppointment(apt); 4.}It seems though, that adding OnClientAppointmentClick , or any other 'OnClient' event are not responding.
Any idea what it could be ?