Sorry I can't find the answer - it must be really simple.
How can I disable (not show) the 'Show All Results' link that appears at the bottom of the search list?
Cheers,
J
Hi Team,
I'm using radgrid with Grouping option .I'm sharing my master table view setting.
<MasterTableView GroupLoadMode="Client" ShowGroupFooter="true" TableLayout="Fixed" GroupsDefaultExpanded="false"
EditMode="InPlace" Width="110%">
By default all groups are collapsed and when I expand a group and click on edit then that particular group is collapsing.
How can I keep the group expanded when I click on edit button
Regards
Sai Teja
If you have a GridBoundColumn in your grid with a row that contains an apostrophe - such as o'reilly and do an export to ExcelML, it works fine. But if you group by that column and export, you get a yellow screen of death:
[SyntaxErrorException: Syntax error: Missing operand after 'reilly' operator.]
-Randy
We have two licences for the UI for ASP.net Ajax and installed one copy for Visual Studio 2010 back in 2013.
I recently installed Visual Studio 2015 on the same computer and had problems running an application developed in VS2010 on .net 4.0 in VS2015 upgraded to .net 4.5.
I tried installing the latest telerik trial version (2016) and this seemed to fix the problems for Visual Studio 2015. The only problem is it is a trial edition and I now have two versions of Telerik installed.
What I want to achieve is:
Please let me know what I need to do to achieve this.
Kind regards
How can I resize the SearchBox from javascript ?
I want to resize the SearchBox based on some available width between a min and max value I provide.
I tried the following but nothing changed
searchBox._dropDownWidth =
"100px"
;
searchBox._element.clientWidth =
"100px"
;
Hi,
when it comes to RadHtmlChart I can use InvokeLoadData="AfterPageLoad" to load the chart data after page load.
What is the equivalent for RadGrid?
Hi,
I have 2 numeric textbox, gridcalculated column and footer column.
Once the value is entered in the numeric textbox (something like onblur), i want to calculate the value for gridcalculated column and footer column. The lblTotalValue should have the total of the "GridCalculatedColumn".
This is the UI which I have:
<
telerik:GridTemplateColumn
UniqueName
=
"OrderQuantity"
HeaderText
=
"Order Quantity"
DataField
=
"OrderQuantity"
>
<
EditItemTemplate
>
<
telerik:RadNumericTextBox
ID
=
"txtOrderQuantity"
runat
=
"server"
>
</
telerik:RadNumericTextBox
>
</
EditItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
UniqueName
=
"UnitPrice"
HeaderText
=
"Unit Price"
DataField
=
"UnitPrice"
>
<
EditItemTemplate
>
<
telerik:RadNumericTextBox
ID
=
"txtUnitPrice"
runat
=
"server"
>
</
telerik:RadNumericTextBox
>
</
EditItemTemplate
>
<
FooterTemplate
>
<
asp:Label
ID
=
"lblTotal"
Text
=
"Total: "
runat
=
"server"
></
asp:Label
>
<
asp:Label
ID
=
"lblTotalValue"
runat
=
"server"
></
asp:Label
>
</
FooterTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridCalculatedColumn
DataFormatString
=
"{0:C}"
DataType
=
"System.Double"
HeaderText
=
"Extended Price"
UniqueName
=
"ExtendedPrice"
DataFields
=
"OrderQuantity,UnitPrice"
Expression
=
"{0}*{1}"
Aggregate
=
"Sum"
Visible
=
"true"
>
</
telerik:GridCalculatedColumn
>