I have a stack column in RadGrid (shown in below image) and I want to apply sorting on the both fields of that column. For the sorting these columns I had applied my own logic and I could sort the columns but I am not able to apply color on column header and the ascending descending image which comes when we use default sorting of RadGrid.
Please tell me how to apply color and image to that column while sorting and when we sort with this stack column then the column, which we had sorted previously should get the default column header style.
Or Is there any alternative to sort the stack columns?
Please reply ASAP.

<GroupingSettings CaseSensitive="false" />
<ClientSettings>
<DataBinding SelectMethod="GetAllOffices" Location="UserDetails.aspx" EnableCaching="true" FilterParameterType="Linq" />
<Selecting AllowRowSelect="true" UseClientSelectColumnOnly="true" />
</ClientSettings>
<MasterTableView>| I have a rad tree list with client select column,I tried to select the raw but select command is not firing on selecting the raw using client select column. can you help me? regards |

Hi,
We were using Telerik Controls of version 2008.2.1001.35 earlier. Now, we are using Telerik Controls of version 2012.1.215.35.
Our TFS build engine server is in IST timezone and our deployment server is in CST timezone.
When we had a build with 2012 version Telerik Controls, Telerik dlls modified date and time will be 1:00PM.
If we deploy this build to our deployment server which is of CST timezone (2:30AM), then we were getting awkward user interface for the deployed application.
Earlier, we were not getting awkward user interface by previous version (2008.2.1001.35) for this time difference.
Please clarify.
Team,
I have added attribute to RadDatePicker control while dynamically creating it.
This attribute contains the date time of the control creation(DateTime.Now.ToString()).
I have retrieved attribute value from in client side.
But I am not able to set Raddatepickers value to that attribute value in client side .
Please let me know how I can achieve this task?
Any help will be appreciable.
Regards,
Sampada

<telerik:RadPanelBar runat="server" ID="pnlPageComponents" Width="100%" OnClientLoad="componentsPanelClientLoad" onitemclick="pnlAdditionalPageEntities_ItemClick" OnClientItemClicked="componentsPanelClientClicked"> <CollapseAnimation Type="None"></CollapseAnimation> <ExpandAnimation Type="None"></ExpandAnimation> <Items> <telerik:RadPanelItem Height="29px" Text="Components" Value="Components" CssClass="rpHeader1"> <HeaderTemplate> <span class="rpOut rpNavigation" style="cursor:pointer; border-left:1px solid #cccccc; border-right:1px solid #cccccc;"> <span class="panelExpandIcon"></span> <span class="rpText"> <asp:Label ID="lblHeader0Components" runat="server"></asp:Label> <asp:Label ID="lblItemStatus0Components" CssClass="pageContentComponentsEditorHeaderDescriptionBlue" runat="server"></asp:Label> </span> </span> </HeaderTemplate> <ContentTemplate> <asp:UpdatePanel ID="UpdatePanelComponents" runat="server" UpdateMode="Conditional"> <ContentTemplate> <uc4:Components ID="pageComponentsList" runat="server" /> </ContentTemplate> </asp:UpdatePanel> </ContentTemplate> </telerik:RadPanelItem> </Items></telerik:RadPanelBar><rad:RadGrid ID="rgBestellingen" runat="server" AllowPaging="True" runat="server" GridLines="None" Width="90%"> <MasterTableView> <PagerStyle Mode="NextPrevAndNumeric" HorizontalAlign="Right"></PagerStyle> </MasterTableView></rad:RadGrid>
public partial class Test : BasePage{ protected void Page_Load(object sender, EventArgs e) { List<string[]> items = new List<string[]>(50); for (int i=0;i<50;i++) items.Add(new string[3] { "1", "2", "3" }); rgBestellingen.DataSource = items; rgBestellingen.VirtualItemCount = items.Count; rgBestellingen.Rebind(); }}
protected void edtQuestRichText_PreRender(object sender, EventArgs e) { RadEditor edtQuestRichText = (sender as RadEditor); edtQuestRichText.ImageManager.ViewPaths = new String[] { "~/CommonImages", Session["currentCustomerImagesFolder"].ToString() }; }