
Hi,
I want to make a multiple sorting + natural sorting column. Multiple sorts are working fine but not for natural sort.
May refer to attached image.
Thanks.

Hi everyone,
I have a RadGrid with batchedit mode in a usercontrol, and I want to have different editors based on the type of the parameter. For example : if the parameter is a string, the editor should allow to write strings, or datetime, boolean, integer, even files so the user can download the file and also images so they can appear on the radgrid !
I found something similar to what I want but it's using Kendo UI : https://docs.telerik.com/kendo-ui/knowledge-base/grid-different-editor-based-on-column-value
Any suggestions ?
Thank you


I build Sharepoint webpart with RadScheduler on one server, then I deployed with sharepoint package on another server, why I get different layout for both server?
How to make it default like documentation on this link https://docs.telerik.com/devtools/aspnet-ajax/controls/scheduler/recurrence-editor/overview

I use Teleriks controls for asp ajax and have a question regarding the
skin files...
I've copied the Skins folder to my project folder and have included it
in my project, but almost all of the items in these folders have a
"Build Action" of "Content" and a "Copy to Output Directory" value of
"Do not copy" in the properties window.
Do I have to go through all these folders to change the "Copy to
Output Directory" to "Copy Always" to ensure all my skin items are
copied over when I publish or build my site?
Of course, this question relates to any file that gets included to a
project, not just Telerik skins...
This page (http://msdn.microsoft.com/en-us/library/0c6xyb66.aspx)
suggests that the "Build Action" - "Content" that...
"The file is not compiled, but is included in the Content output
group. For example, this setting is the default value for an .htm or
other kind of Web file."
but this page also states the seetings for "Copy to Output Directory"
are ...
"This property specifies the conditions under which the selected
source file will be copied to the output directory. Select Do not copy
if the file is never to be copied to the output directory. Select Copy
always if the file is always to be copied to the output directory.
Select Copy if newer if the file is to be copied only when it is newer
than an existing file of the same name in the output directory."
If I do have to set all my content skins and images etc to "Copy
Always", is there a quick way to do this when there could be hundreds
of these files spread through a large number of folders and sub
folders?
Hi from France !
I need to make specific filter by column. columns are itemTemplate. in my original projet i've got many data in different columns/template like this :
<telerik:GridTemplateColumn UniqueName="situationCertif" ItemStyle-CssClass="situationBloc"> <ItemTemplate> <asp:Label ID="libFacture" runat="server" Text='<%# String.Format("Facture n° {0}", Eval("LibFacture"))%>'></asp:Label> <asp:Label ID="lMontantHT" runat="server" Text='<%# String.Format("Montant HT : {0:C2}", Eval("MontantHT"))%>'></asp:Label> <asp:Label ID="lMontantTTC" runat="server" Text='<%# String.Format("Montant TTC : {0:C2}", Eval("MontantTTC"))%>'></asp:Label> <asp:Label ID="lEtat" runat="server" Text='<%# String.Format("Etat : {0}", Eval("Etat.LongString"))%>'></asp:Label> <div> Payer à : <asp:Label ID="lTiersPayeur" runat="server" CssClass="tiers" Text='<%# String.Format("{0}", Eval("NomTiersPayeur"))%>'></asp:Label> </div> </ItemTemplate> </telerik:GridTemplateColumn>
I've maked a sample to search how to made this (see Grid.png)
i've got a class "TestData" binded to template columns :
Public Class TestData Property Nom As String Property Prenom As String Property age As Integer Property statut As String Property Infos As String Public Sub New(nom As String, prenom As String, age As Byte, statut As String, infos As String) Me.Nom = nom Me.Prenom = prenom Me.age = age Me.statut = statut Me.Infos = infos End SubEnd ClassPrivate Sub SetGridData() Dim list As New List(Of TestData) From { New TestData("Albert", "Bebert", 28, "Directeur", "ux texte standard de l'imprimerie depuis les années 1500, quand un imprimeur anonyme assembla ensemble des morceaux de texte pour réaliser un livre spécimen"), New TestData("Bilal", "Ournis", 25, "Ingénieur", ""), New TestData("Jerôme", "Nimo", 35, "Commercial", " sans que son contenu n'en soit modifié. Il a été popularisé dans les années 1960 grâce à la "), New TestData("Elvira", "Pas", 50, "Commercial", ""), New TestData("Sylvestre", "Saint", 47, "Commercial", "s suites logicielles de mise en page ou éditeurs de sites Web ont fait du Lorem Ipsum leur faux texte par défaut, et une recherche pour 'Lorem Ipsum' vous cond") } RadGrid1.DataSource = listEnd Sub
<telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="true" AutoGenerateColumns="false" OnInit="RadGrid1_Init" OnItemCommand="RadGrid1_ItemCommand"> <MasterTableView> <Columns> <telerik:GridTemplateColumn FilterListOptions="VaryByDataTypeAllowCustom" DataField="demo" UniqueName="demo"> <ItemTemplate> <h1><%# Eval("Nom") %></h1> <h3><%# Eval("Prenom") %></h3> <i><%# Eval("Age") %></i> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn FilterListOptions="VaryByDataTypeAllowCustom" DataField="infos" UniqueName="infos"> <ItemTemplate> <p><b><%# Eval("Statut") %></b></p> <p><%# Eval("Infos") %></p> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid>
example :
First column i need to search in "Nom" or "Prenom" or "Age" properties (contain mode)
Second column i need to search in "Statut" or "Infos" properties (contain mode)
How to define a filter menu by column ?
Thanks for your help, and excuse me for my bad english.

Hi,
RadGrid Grid - Excel-like Filtering not work in .ascx page... but it work in .aspx.
In .ascx page when i click on the Header Context Filter Menu button the Filter Popup is not show .... nothing is happen but in .aspx page it works well
would you please help me so that Excel-like Filtering is also work on a grid that is in my .aspx page
Here is my grid code Mostly taken from your example
//////////////////
<telerik:RadGrid ID="grdBracketPlayers" Width="1120" runat="server" Skin="Metro"
AllowFilteringByColumn="true" FilterType="HeaderContext" EnableHeaderContextMenu="true" EnableHeaderContextFilterMenu="true" AllowPaging="True" OnFilterCheckListItemsRequested="grdBracketPlayers_FilterCheckListItemsRequested" AllowSorting="true" GroupingEnabled="true"
OnNeedDataSource="grdBracketPlayers_NeedDataSource">
<MasterTableView DataKeyNames="FullName" AutoGenerateColumns="False" >
<Columns>
<telerik:GridBoundColumn FilterCheckListEnableLoadOnDemand="true" DataField="FullName" FilterControlAltText="Filter ContactName column" HeaderText="PlayLevelName" SortExpression="PlayLevelName" UniqueName="PlayLevelName" AutoPostBackOnFilter="true" CurrentFilterFunction="StartsWith">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>​