.RadGrid_Sunset .rgRow td
{
border-color
:
#FFFFFF
#FFFFFF
#FFFFFF
#CABAAB
!important
;
}
.RadGrid_Sunset .rgAltRow
{
background
:
none
repeat
scroll
0
0
#F1E9DC
!important
;
}
.RadGrid_Sunset .rgAltRow td
{
border-color
:
#F1E9DC
#F1E9DC
#F1E9DC
#CABAAB
!important
;
}
.RadGrid_Sunset .rgRow
{
background
: inherit
!important
;
}
.RadGrid_Sunset .rgRow td, .RadGrid_Sunset .rgAltRow td
{
border-left
:
solid
1px
#CABAAB
!important
;
padding-left
:
7px
!important
;
}
/* finally, need to put this one back in */
.RadGrid_Sunset .rgHeader:first-child, .RadGrid_Sunset th.rgResizeCol:first-child, .RadGrid_Sunset .rgFilterRow > td:first-child, .RadGrid_Sunset .rgRow > td:first-child, .RadGrid_Sunset .rgAltRow > td:first-child
{
border-left
:
0
none
!important
;
padding-left
:
8px
!important
;
}
We are trying to use a custom localization for RadEditor Dialogs. We created RadEditor.Dialogs.en-GB.resx, RadEditor.Dialogs.fr-CA.resx … files and we set the “LocalizationPath” and “Language” properties. This is working fine for all cultures but not for “en-US”. The dialogs are displayed without text for "en-US" culture and it seems it cannot see the resx file for US. Can you please help with this issue?
protected void grid_ItemCreated(object sender, GridItemEventArgs e)
{
if (e.Item.OwnerTableView.Name == "gridTableView" && e.Item is GridEditableItem && e.Item.IsInEditMode)
{
GridEditableItem editItem = e.Item as GridEditableItem;
RadDatePicker picker = editItem["StartDate"].Controls[0] as RadDatePicker;
if (e.Item.OwnerTableView.IsItemInserted)
{
picker.SelectedDate = DateTime.Today;
}
}
I’ve installed the RadEditor controls (Build 2010_2_929) in a Sharepoint 2010 farm I’m experiencing the following issue: Numerous standard tool buttons are missing from the docked RadEditor menu (see attached picture).
The bold button appears, but the italics and underline buttons are missing (as well as several other pieces of functionality). In addition to the missing menu buttons, the Design, HTML and Preview tabs are missing at the bottom of the editable content region.
This occurs when I activate all three Telerik Site Features:
-Use an accessible UI in RadEditor
-Use RadEditor to edit HTML fields
-Use RadEditor to edit List Items
If I deactivate “Use an accessible UI”, I get the full undocked menu with all of the missing buttons, but the Design, HTML, and Preview tabs are still missing.
I’ve checked the ToolsFile.xml and the ListToolsFile.xml and all standard buttons are enabled.
Thanks for any help...
<
telerik:RadTreeView ID="rtvLineeBeni" Runat="server" OnNodeExpand="RTV_NodeExpand"
Font-Names="Arial" Font-Size="12pt" Font-Strikeout="False" Skin="WebBlue"
BorderColor="Gray" Height="390px" Width="748px" AllowNodeEditing="true"
OnClientContextMenuItemClicking="onClientContextMenuItemClicking"
onnodeedit="rtvLineeBeni_NodeEdit" >
<telerik:RadTreeNode Value="1" ImageUrl="~/Images/ImagesTree/Reparto.png"
AllowEdit="false" Text="Reparto" Expanded="true" ContextMenuID="MainContextMenuInsert" >
</telerik:RadTreeNode>
</Nodes>
</telerik:RadTreeView>
Then i populate it ON DEMAND(c# code)
var oId = document.getElementById('<%=rtvLineeBeni.ClientID %>').value
var oId = document.getElementById('<%=rtvLineeBeni.ClientID %>_SelectedNode').value
but it tells me that it's Undefined ...