Not sure if this is a RadWindow or RagGrid issue, but issue is affecting the RagGrid, however this issue is limited to viewing the page in Internet Explorer only (Chrome and Edge work).
When I open a URL with a RadGrid in a RadWindow, the embedded icons (add, refresh, edit, delete, etc.) are not visible. If I open the exact URL directly in the browser I see the icons. I understand these images are actually fonts and there may be issues with these fonts in IE, but this only happens when the URL is displayed in a RadWindow.
Is there a solution or work-around?
When I enable lightweight render globally within my app, it appears my page CSS which controls layout seems to be ignored.
How do I force the controls to use the CssClass settings I have set?
Hi
Im working with the radpivotgrid, i change some column names in the pivot in the CellDataBound event (like Kostadin explains in this example http://www.telerik.com/forums/edit-grandtotalcolumns-in-radpivotgrid) and works fine, the problem is when i try to export to an Excel file, all the data is exported fine, except the column names that i edited, the column names in the exported excel file dont have the changes i maded, and other thing, there is a way to hide the columns of a PivotGridAggregateField and show only the grand total of this same field?
<asp:LinqDataSource ID="LinqDataSource2" runat="server" |
ContextTypeName="Offices.BillingDataClassesDataContext" OrderBy="Name" |
TableName="sc_Tribunals" Select="Distinct"> |
</asp:LinqDataSource> |
<telerik:RadComboBox ID="rcbSearchBox" Runat="server" |
DataSourceID="LinqDataSource2" DataTextField="Name" DataValueField="OfficeId" |
MarkFirstMatch="True" AllowCustomText="True"> |
</telerik:RadComboBox> |
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" |
Text="Search By City" /> |
Hi,
i am trying to represent year/month and year/quarter in the chart as in the attached pictures. Standard features in excel amongst other, but I can't find a solution for it in Telerik.
Terje
Hello,
RadEditor controls toolbar (Bold, Italic, etc) is not working on the latest version of Firefox 68.0.1 (64-bit), i tried fixing the issue using ".onParentNodeChanged()" solution that i found on the forum but with no result.
<
asp:Content
runat
=
"server"
ContentPlaceHolderID
=
"MainContent"
>
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
EnableShadow
=
"True"
Skin
=
"IP"
EnableEmbeddedSkins
=
"false"
VisibleTitlebar
=
"true"
VisibleStatusbar
=
"false"
AutoSize
=
"true"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"rwdAddActionTaken"
runat
=
"server"
Title
=
"Add Response"
Modal
=
"true"
Skin
=
"IP"
EnableEmbeddedSkins
=
"false"
VisibleTitlebar
=
"true"
ShowContentDuringLoad
=
"false"
VisibleStatusbar
=
"false"
Behaviors
=
"Close"
AutoSize
=
"true"
Width
=
"700px"
Height
=
"550px"
OnClientShow
=
"fixEditor"
>
<
ContentTemplate
>
<
telerik:RadEditor
RenderMode
=
"Lightweight"
runat
=
"server"
ID
=
"RadEditor1"
ContentAreaMode
=
"Div"
SkinID
=
"DefaultSetOfTools"
Height
=
"675px"
>
<
Tools
>
<
telerik:EditorToolGroup
Tag
=
"Top"
>
<
telerik:EditorTool
Name
=
"Bold"
/>
<
telerik:EditorTool
Name
=
"Italic"
/>
<
telerik:EditorTool
Name
=
"Underline"
/>
<
telerik:EditorTool
Name
=
"StrikeThrough"
/>
<
telerik:EditorSeparator
Visible
=
"true"
/>
<
telerik:EditorTool
Name
=
"InsertOrderedList"
/>
<
telerik:EditorTool
Name
=
"InsertUnorderedList"
/>
<
telerik:EditorTool
Name
=
"Outdent"
/>
<
telerik:EditorTool
Name
=
"Indent"
/>
<
telerik:EditorSeparator
Visible
=
"true"
/>
<
telerik:EditorTool
Name
=
"FontName"
/>
<
telerik:EditorTool
Name
=
"RealFontSize"
/>
<
telerik:EditorTool
Name
=
"ForeColor"
/>
<
telerik:EditorTool
Name
=
"BackColor"
/>
<
telerik:EditorSeparator
Visible
=
"true"
/>
<
telerik:EditorTool
Name
=
"Undo"
/>
<
telerik:EditorTool
Name
=
"Redo"
/>
<
telerik:EditorSeparator
Visible
=
"true"
/>
<
telerik:EditorTool
Name
=
"Cut"
/>
<
telerik:EditorTool
Name
=
"Copy"
/>
<
telerik:EditorTool
Name
=
"PasteAsHtml"
/>
<
telerik:EditorTool
Name
=
"PastePlainText"
/>
</
telerik:EditorToolGroup
>
<
telerik:EditorToolGroup
Tag
=
"Middle"
>
<
telerik:EditorTool
Name
=
"JustifyLeft"
/>
<
telerik:EditorTool
Name
=
"JustifyCenter"
/>
<
telerik:EditorTool
Name
=
"JustifyRight"
/>
<
telerik:EditorSeparator
Visible
=
"true"
/>
<
telerik:EditorTool
Name
=
"InsertLink"
/>
</
telerik:EditorToolGroup
>
</
Tools
>
</
telerik:RadEditor
>
</
ContentTemplate
>
</
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
<
script
type
=
"text/javascript"
>
function fixEditor()
{
$find("<%=RadEditor1.ClientID %>").onParentNodeChanged();
}
</
script
>
</
asp:Content
>
Hello,
I need to show the NestedViewTemplate for a row when that row is edited using in-place editing. How can I achieve this? So far what I have tried was calling the expand event on the Edit command like so:
if(e.CommandName == RadGrid.EditCommandName)
{
e.Item.FireCommandEvent(RadGrid.ExpandCollapseCommandName, new GridExpandCommandEventArgs(e.Item, sender, e));
//e.Item.Expanded = true;
}
The RadGrid.ExpandCollapse command is correctly being fired but the in-place editing is showing and the NestedViewTemplate is not showing as intended.