Hello
I have a dropdowntree that is updated using a treelist.
I wish when I check a line in my treelist check the corresponding value in the dropdowntree.
But also uncheck the old value.
I use this for
dropdowntree.get_entries().clear()
This method works the first time but if I check a value a second time it no longer works.
I have that :
Dropdowntree.get_entries().count() = 0
I would like to apply a class on the <tool name="InsertUnorderedList" /> , <tool name="InsertOrderedList" />
Is there a way to subscribe to tool events to apply the classes when working with the tools.xml? We are using the Rad Editor for content blocks and would like to apply classes according on the ul and ol tags.
If we are to use JS function where would the JS file be located to be available to subscribe to the events fired by Rad Editor


Hi,
I am trying to stop the default mouse over tool tip for an appointment appearing over the top of the right click menu (see attached).
I have tried changing the z-index of the right click menu but this has no made no difference, is there any way to force the tooltip to appear under the right click menu?
Thanks
Gavin.
<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" PageSize="5" Width="100%" OnPageIndexChanged="RadGrid1_PageIndexChanged" GridLines="None" Skin="Vista" AllowMultiRowSelection="True" > <MasterTableView > <Columns> <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" ></telerik:GridClientSelectColumn> </Columns> <RowIndicatorColumn> <HeaderStyle Width="20px" /> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px" /> </ExpandCollapseColumn> <PagerStyle Mode="NextPrev" /> </MasterTableView> <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" Font-Underline="False" Wrap="True" /> <ClientSettings EnableRowHoverStyle="true" > <Selecting AllowRowSelect="True" UseClientSelectColumnOnly = "true" /> </ClientSettings> </telerik:RadGrid> protected void Ok_Click(object sender, System.EventArgs e)
{
foreach (GridDataItem item in RadGrid1.SelectedItems) { CheckBox chk = (CheckBox)item["ClientSelectColumn"].Controls[0]; id = item["ID"].Text; // get the id with its column name name = item["NAME"].Text; // get the name with its column name chec = chk.Checked; }
}protected void btnDel_Click(object sender, EventArgs e){ string id; bool chec; foreach (GridDataItem item in RadGrid2.Items) { CheckBox chk = (CheckBox)item["CheckboxColumn"].Controls[0]; id = item["codigo"].Text; chec= chk.Checked; }}<telerik:RadGrid ID="RadGrid2" runat="server" AllowMultiRowSelection="true" Width="300px" OnNeedDataSource="RadGrid2_NeedDataSource"> <MasterTableView AutoGenerateColumns="False" CommandItemDisplay="Top" CommandItemSettings-AddNewRecordText="Novo Registro" CommandItemSettings-RefreshText="Atualizar" DataKeyNames="codigo"> <Columns> <telerik:GridClientSelectColumn UniqueName="CheckboxColumn" /> <telerik:GridBoundColumn HeaderText="Código" DataField="codigo" UniqueName="codigo" /> <telerik:GridBoundColumn HeaderText="Descrição" DataField="descricao" UniqueName="descricao" /> </Columns> </MasterTableView> <ClientSettings EnablePostBackOnRowClick="True"> <Selecting AllowRowSelect="true" /> </ClientSettings> </telerik:RadGrid> <asp:Button ID="btnDeletar" CommandName="Delete" runat="server" Text="Deletar Items" onclick="btnDeletar_Click" />
You may see it on the official : http://demos.telerik.com/aspnet-ajax/button/examples/rendermode/defaultcs.aspx?skin=Black
Checkboxes and Radio are not properly visualized in the Classic Rendering mode.
The issue is reproduced with any browser.