Hi,
In the following code, the default sorting is by "clientId". How do I make the sorting default by "Name"?
<telerik:RadGrid ID="RadGrid1" runat="server" AllowMultiRowSelection="true" CssClass="RadGrid RadGrid_Silk" OnItemCommand="itemClickRadGrid" Visible="true" OnItemDataBound="RadGrid1_ItemDataBound" AllowSorting="True" AllowPaging="True" PageSize="100" AutoGenerateColumns="false" AllowFilteringByColumn="false" OnNeedDataSource="RadGrid1_NeedDataSource1"> <MasterTableView GroupLoadMode="Client" TableLayout="Fixed" EnableGroupsExpandAll="false" DataKeyNames="FilingIdentifier" ShowHeader="false"> <GroupByExpressions> <telerik:GridGroupByExpression> <SelectFields> <telerik:GridGroupByField HeaderValueSeparator=" " HeaderText=" " FieldName="Name" SortOrder="Ascending"></telerik:GridGroupByField> </SelectFields> <GroupByFields> <telerik:GridGroupByField FieldName="clientId"></telerik:GridGroupByField> </GroupByFields> </telerik:GridGroupByExpression> </GroupByExpressions> <Columns> <telerik:GridBoundColumn DataField="TaxYear" HeaderText="Year" UniqueName="TaxYear"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="PreviousFiling" Visible="false" UniqueName="PreviousFiling"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="ForwardFiling" Visible="false" UniqueName="ForwardFiling"></telerik:GridBoundColumn> <telerik:GridButtonColumn Text="Launch" UniqueName="lauchrow" CommandName="launchRow" ButtonType="PushButton" HeaderStyle-Width="70px"></telerik:GridButtonColumn> <telerik:GridButtonColumn Text="Add tax year" UniqueName="addTaxYear" CommandName="cf" ButtonType="PushButton" HeaderStyle-Width="110px"></telerik:GridButtonColumn> </Columns> </MasterTableView> <GroupingSettings /> <ClientSettings AllowDragToGroup="false"> <Selecting AllowRowSelect="true" /> </ClientSettings> </telerik:RadGrid>
Thanks
I'm binding a country list data to radcombobox with multiple selection option. Its working fine, but if i want to search the items by typing the text. I'm facing some problem.
Say if i search for "India", i will type "indi" in textfield of a radcombobox it will show "india" so that i will check it.
It is working as of the situation now, but if want to select one more country by typing the text like for "United states",
Now the issue is " I need to clear the existing text "indi" in the field by giving backspace" to search for a new one which is "united states", but in combobox it remains checked. so there is no problem with the logic. But for a user will be like he is unchecking the existing country for selecting the new one.
It would be better to have a separator for each selected item which is checked.
like this..
If i type "indi" it will showup "india" then after i checked it, if i want to search a new one.
i can do this way.. India, "countryname to search for" , so that i can search new items by giving the comma

Is it possible to show specific days - not a day range;
For instance show Monday, Tuesday and Friday?


Hi
When I try to drag a node in a diagram, the whole diagram is being dragged.
I am using Google chrome version 41.0.2272.118 m.
This does not happen in IE10 nor in FF.

i am having problem to save file to FTP using RadAsyncUpload... according to this control its is saving file to server first can i directly save this to FTP by changing TemporaryFolder and TargetFolder to ftp destination with credentials. and is there another way to save file directly to FTP without saving it to server .. thanx in advance
Note : MY FTP is on another server..and have username and password

How could I set focus on the Radrating after client-side validation like:
http://docs.telerik.com/devtools/aspnet-ajax/controls/rating/how-to/radrating-with-customvalidatorplease help.
Marc
Hi,
We have a problem with the menu when located near the bottom of pages.
Often there is a scroll (EnableAutoScroll is True for other reasons!), despite lots of space above. It doesn't expand up instead of down seems to be the main problem.
In the following example:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="menu.aspx.vb" Inherits="TestaTredjepartWeb.menu" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <asp:ScriptManager ID="s" runat="server"> </asp:ScriptManager> <div> <table> <tr> <td style="vertical-align: top; padding-bottom: 0px"> <div style="height: 200px; background-color: blue"> </div> <div style="padding-bottom: 60px; background-color: red"> <telerik:RadMenu ID="menu" runat="server" RenderMode="Lightweight" ClickToOpen="true" ExpandDelay="0" EnableAutoScroll="true" OnClientItemOpening="function(sender, args){args.get_item()._defaultScrollSize = 0;}" > <Items> <telerik:RadMenuItem Text="Test1" Value="item1"> <Items> <telerik:RadMenuItem Text="1"></telerik:RadMenuItem> <telerik:RadMenuItem Text="2"></telerik:RadMenuItem> <telerik:RadMenuItem Text="3"></telerik:RadMenuItem> <telerik:RadMenuItem Text="4"></telerik:RadMenuItem> </Items> </telerik:RadMenuItem> </Items> </telerik:RadMenu> </div> </td> </tr> </table> </div> </form></body></html>When resizing the browser window near the edge of the red area, the menu expands down with a scroll despite the large blue area above where it could have expanded up!
If making the window a little bit smaller than the red area, it works as expected and expands up!
If making the window a little bit larger than the red area, it also works as expected and expands up!
If making the window much larger than the red area, it also works as expected and expands down (without scroll)!
Regards
Andreas
