Hi,
I used following code and other code also but not working.
<LabelsAppearance >
<TextStyle Color="Red" FontFamily="Arial" Padding="10" Bold="true"
Italic="true" Margin="10" />
</LabelsAppearance>

Hey..
We are using you Radeditor in our application with localization. But we see that there are 2 places where localizations are not handled:-
1. Click on hyperlink manager and then click on button next to URL then click on image selector and notice pagination text at bottom.
2. Click on hyperlink manager and then click on button next to URL click on documents. If there is no content in the folder it shows ""No Records to Display" in all languages.
We need both these things localized. Please help me how to proceed.
Thanks in advance,

right i've read so many threads on how to implement a custom skin for a telerik menu onto my webpage this is what I currently have coded.
In my web config I have:
<appSettings>
<add key="Telerik.Skin" value="Glow2"/>
<add key="Telerik.EnableEmbeddedSkins" value="false"/>
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false"/>
<add key="Telerik.ScriptManager.TelerikCdn" value="Disabled" />
<add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled" /></appSettings>
in my site master I have
<link href="Skins/Glow2/Menu.Glow2.css" rel="stylesheet" type="text/css" />
and for my menu code I use:
<li>
<asp:LoginView ID="SysAdminLV" runat="server">
<RoleGroups>
<asp:RoleGroup Roles="Masters">
<ContentTemplate>
<telerik:RadMenu ID="SysAMenu" runat="server" Skin="Glow2">
<Items>
<telerik:RadMenuItem runat="server" Text="Sys Admin" NavigateUrl="~/Default.aspx">
<Items>
<telerik:RadMenuItem runat="server" Text="Create User" NavigateUrl="~/Staff/Masters/New_User.aspx"></telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" Text="Manage Users" NavigateUrl="~/Staff/Masters/Manage_Users.aspx"></telerik:RadMenuItem>
</Items>
</telerik:RadMenuItem>
</Items>
</telerik:RadMenu>
</ContentTemplate>
</asp:RoleGroup>
</RoleGroups>
</asp:LoginView>
</li>
Now my custom skin is called Glow2 because I made very little changes to the "Glow" skin, im not getting an error or anything the page loads fine its just the links that I have do not pull through the syling from the Glow2 Skin. attached is what the page looks like when loaded.my "home" and "Sysadmin" links are telerik the rest are coded through CSS at the moment.

Hi Ivan,
'm using an icon font and have allocated an icon to a node. When the node is in the More menu any child nodes also display the CSS. If the same main node is accessed when NOT in the more menu the icon doesn't show on the child nodes.
I'm trying to use some CSS to get the icon to only display on the parent node but am having no luck yet. Any pointers?
Regards
Jon


Hi All,
In case anyone has issues with the tooltips on the Material skin mod them with the following css. Found in the dataviz.css file in the installation folder. Hopefully a more compliant style will be added to the material skin at some point in the future.
.k-chart-tooltip { border-radius: 0px !important; background-image:none !important;}Cheers
Jon
Hi,
On the RadGrid there is a css style that you can use to give a deeper shade to the sorted column. Is there an eqivalent for the TreeList? Looking at the CSS I couldn't find one...
Regards
Jon
The following is my grid which uses AllowAutomaticUpdates and updates the row as expected when the Update button is clicked. The problem is when I copy the code to the server, when I click the Update button, nothing happens. Clicking Edit brings up the Update and Cancel buttons as expected. Clicking Cancel takes the row out of Edit mode as expected. The environments appear to be the same. The code is the same.
What could be causing Update button not to fire on one computer but works fine on another? What do I look for?
<telerik:RadGrid ID="rgProducts" runat="server" DataSourceID="sqlProducts" GroupPanelPosition="Top" Skin="Office2010Black" AutoGenerateColumns="False" Width="600px"
AllowSorting="True" Height="200px" AutoGenerateEditColumn="True" MasterTableView-EditMode="InPlace" AllowAutomaticUpdates="True">
<GroupingSettings CollapseAllTooltip="Collapse all groups"></GroupingSettings>
<ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True" EnablePostBackOnRowClick="true">
<Selecting AllowRowSelect="True" />
<Scrolling AllowScroll="True" UseStaticHeaders="True" />
</ClientSettings>
<MasterTableView DataSourceID="sqlProducts" DataKeyNames="product_id" >
<Columns>
<telerik:GridBoundColumn DataField="product_id" Visible="false" HeaderText="Product_id" UniqueName="product_id">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="product_name" HeaderStyle-Width="100px" FilterControlAltText="Filter product_name column" HeaderText="Product" SortExpression="product_name" UniqueName="product_name">
<HeaderStyle Width="100px"></HeaderStyle>
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="sams_excel_column" HeaderStyle-Width="30px" DataType="System.Int32" FilterControlAltText="Filter sams_excel_column column" HeaderText="Sams Excel Column" SortExpression="sams_excel_column" UniqueName="sams_excel_column">
<HeaderStyle Width="30px"></HeaderStyle>
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="rd_excel_column" HeaderStyle-Width="30px" DataType="System.Int32" FilterControlAltText="Filter rd_excel_column column" HeaderText="RD Excel Column" SortExpression="rd_excel_column" UniqueName="rd_excel_column">
<HeaderStyle Width="30px"></HeaderStyle>
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>

Quick question
how can i find a dropDowncolumn via javascript ?
I've tried the following
var row = masterTableView.get_editItems()[0];
var dropDown = masterTableView.get_editItems()[0].findControl('nameofMyDropDownColumn');
but when debugging dropDown is always null
Notes:
grid is in edit mode
Is there a different method i should be using ?
