hello .I have a question about exporting a grid to excel
I have a grid with one numeric column(INT 32) and I want to show the content of this cell with comma (Like 10,000) and when it will export to excel it shows exactly like the content (I mean 10,000 in grid and in excel both) And the main part is I want it will be numeric cell in excel not string cell.
I have added this parts to column : DataType="System.Int32" DataFormatString="{0:n0}
but after exporting, this cell format is not numeric .it is string and I should change it to numeric cell manualy . I want it in numeric format .
Thanks in Advanced
I created a menu based on the sample "Menu - Server-side Templates" http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/templates/defaultcs.aspx
unfortunately the submenu links are not working on mobile devices (tested on IPhone 6), same problem with your demo application.
How can I fix the problem.
Regards,
Thomas
Hi All
I'm fairly new to Telerik tools and would like some assistance.
I am using the RadImageGallery component.
Is it possible to connect the 'ImagesFolderPath' property to a share or path on a different server, rather than store all the images within the site?
Thanks
Gary
I am using a RadGrid to display information and allowing export to CSV option. I would like to be able to add some additional 'static' information in the first row of the exported CSV file..
i.e.
(ROW 1) - STATIC TITLE
(ROW 2) - Column Header 1, Column Header 2, Column Header 3..etc
(ROW 3 -X) Column Data 1, Column Data 2, Column Data 3..etc
I have research multi-header/grouping solution, onrgidExporting solution, insertRow - but I am not able to achieve what I am attempting.
Sample of my grid
<telerik:RadGrid ID="rgTAS" Width="100%"
AllowSorting="false"
AllowPaging="false"
AllowFilteringByColumn="false"
ViewStateMode="Enabled"
OnItemDataBound="rgTAS_ItemDataBound"
AllowMultiRowSelection="false" runat="server"
OnGridExporting="rgTAS_onExporting"
GridLines="None">
<MasterTableView Width="100%" AutoGenerateColumns="false" CommandItemDisplay="None"
ShowFooter="false" ShowHeader="true"
>
<Columns>
<telerik:GridBoundColumn DataField="cc" HeaderText="CC"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="country_na" HeaderText="COUNTRY" ></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="track" HeaderText="TRACK"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ia" HeaderText="IA" ></telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Please assist...
Hi, All. I am trying to find a radeditor control that's inside a RadGrid Form Template. I have tried so many methods, and nothing seems to be quite grabbing the item. Could someone please help me? I need to get to the content of the editor. This is the current path I am on:
ASP.NET
<
EditFormSettings
EditFormType
=
"Template"
>
<
FormTemplate
>
<
div
style
=
"margin: 20px 20px 20px 20px;"
>
<
h3
>Accept / Reject Authorization</
h3
>
<
br
/>
<
span
style
=
"color: Red;"
>Note:</
span
> Provide comments to the authorizing entity then click Accept or Reject.
<
telerik:RadEditor
ID
=
"Editor1"
runat
=
"server"
OnClientLoad
=
"OnClientLoad"
>
<
Content
> </
Content
>
</
telerik:RadEditor
><
br
/>
<
asp:CustomValidator
ID
=
"CV1"
runat
=
"server"
ErrorMessage="Comments are required!<br />" ControlToValidate="Editor1" ForeColor="Red" Display="Dynamic" ClientValidationFunction="CheckComment"></
asp:CustomValidator
>
<%-- <
asp:RequiredFieldValidator
ID
=
"RequiredFieldValidator1"
runat
=
"server"
ErrorMessage="Comments are required!<br />" ControlToValidate="Editor1" ForeColor="Red" Display="Dynamic"></
asp:RequiredFieldValidator
>--%>
<
telerik:RadButton
ID
=
"AcceptAuthorization"
runat
=
"server"
Text
=
"Accept"
Icon-PrimaryIconCssClass
=
"rbOk"
CommandName
=
"Update"
CommandArgument
=
"Accept"
></
telerik:RadButton
>
<
telerik:RadButton
ID
=
"RejectAuthorization"
runat
=
"server"
Text
=
"Reject"
Icon-PrimaryIconCssClass
=
"rbCancel"
CommandName
=
"Update"
CommandArgument
=
"Reject"
></
telerik:RadButton
>
<
telerik:RadButton
ID
=
"CloseButton"
runat
=
"server"
Text
=
"Cancel"
CommandName
=
"Cancel"
CausesValidation
=
"False"
></
telerik:RadButton
>
</
div
>
</
FormTemplate
>
</
EditFormSettings
>
Javascript:
<script type=
"text/javascript"
>
function
CheckComment(sender, args) {
alert(
"Hi!"
);
var
ec = $telerik.findControl(container,
"Editor1"
)
//more to come once I get past this step.
args.IsValid =
false
;
}
</script>
Hi All,
I am totally new to Telerik controls, this is my first assignment with them and I have an issue.
No matter what I put in the editor it looses all carriage returns, shows a bullet and number in the editor but after save on the HTML page it looks like this.
$0$0Bullets$0$0$0$0$0Numbers$0$0$0$0Bold$0$0Italics$0$0Underlined$0$0$0$0 (the Bold was bolded, the Italics was italicized and the underline was underlined), but it inserts these '$0$0' before and after each item.
Does anyone have a clue what is going on, perhaps it is the AJAX Script Manager on this page, there is not a Telerik one?
I do not see any methods or .css causing an issue, I could be wrong though.
ASP.NET:
<telerik:RadEditor ID="txt_answer" Width="580" Height="250" runat="server" EnableContextMenus="True"
EnableTheming="True" ToolsFile="~/App_Data/ToolsFile.xml" EnableResize="false"
ShowSubmitCancelButtons="False" Skin="Telerik">
<cssfiles>
<telerik:EditorCssFile />
</cssfiles>
</telerik:RadEditor>