<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() }; }
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateSelectColumn="True" CellSpacing="0" GridLines="Horizontal" AutoGenerateColumns="False" OnClientClick="RadGrid1_SelectedIndexChanged"> <ClientSettings EnablePostBackOnRowClick="true"> <Selecting AllowRowSelect="true" /> </ClientSettings><MasterTableView><Columns> <telerik:GridTemplateColumn AllowFiltering="false" UniqueName="TemplateEditColumn"> <ItemTemplate> <asp:HyperLink ID="EditLink" runat="server" Text="Edit"></asp:HyperLink> </ItemTemplate> <FooterStyle Width="32px" /> <HeaderStyle Width="32px" /> <ItemStyle Width="32px" /> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="UniqueID" HeaderText="Unique ID" UniqueName="UniqueID" FooterStyle-Width="1px" HeaderStyle-Width="1px" ItemStyle-Width="1px" Visible="false"/> <telerik:GridBoundColumn DataField="Telephone" HeaderText="Telephone" UniqueName="Telephone" FooterStyle-Width="1px" HeaderStyle-Width="1px" ItemStyle-Width="1px" Visible="false"/> <telerik:GridBoundColumn DataField="StatusID" HeaderText="StatusID" UniqueName="StatusID" FooterStyle-Width="1px" HeaderStyle-Width="1px" ItemStyle-Width="1px" Visible="false"/> <telerik:GridBoundColumn DataField="Customer" HeaderText="Customer" UniqueName="Customer" FooterStyle-Width="1px" HeaderStyle-Width="1px" ItemStyle-Width="1px" /> <telerik:GridBoundColumn DataField="From" HeaderText="From" UniqueName="From" FooterStyle-Width="100px" HeaderStyle-Width="100px" ItemStyle-Width="100px" Visible="false"/> <telerik:GridBoundColumn DataField="Subject" HeaderText="Subject" UniqueName="Subject" FooterStyle-Width="100px" HeaderStyle-Width="100px" ItemStyle-Width="100px" /> <telerik:GridBoundColumn DataField="Name" HeaderText="Taken By" UniqueName="Name" FooterStyle-Width="100px" HeaderStyle-Width="100px" ItemStyle-Width="100px" /> <telerik:GridBoundColumn DataField="TakenOn" HeaderText="Taken On" UniqueName="TakenOn" FooterStyle-Width="100px" HeaderStyle-Width="100px" ItemStyle-Width="100px" /> <telerik:GridBoundColumn DataField="Urgent" HeaderText="Urgent" UniqueName="Urgent" FooterStyle-Width="1px" HeaderStyle-Width="1px" ItemStyle-Width="1px" /> <telerik:GridBoundColumn DataField="StatusNew" HeaderText="Status" UniqueName="StatusNew" FooterStyle-Width="100px" HeaderStyle-Width="100px" ItemStyle-Width="100px" /></Columns><CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings><RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"><HeaderStyle Width="5px"></HeaderStyle></RowIndicatorColumn><ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"><HeaderStyle Width="5px"></HeaderStyle></ExpandCollapseColumn><EditFormSettings><EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn></EditFormSettings></MasterTableView><FilterMenu EnableImageSprites="False"></FilterMenu> </telerik:RadGrid>Dim item As GridDataItem = TryCast(RadGrid1.SelectedItems(0), GridDataItem)