or
<NestedViewTemplate> <asp:Label ID="CurrentUser" runat="server" Text='<%# Bind("user_id") %>' Visible="false"></asp:Label> <asp:SqlDataSource ID="sqlds_SelectedUser" runat="server" ConnectionString="<%$ ConnectionStrings:M_ConnectionString %>" SelectCommand="SELECT * FROM [d_users] WHERE ([user_id] = @user_id)"> <SelectParameters> <asp:ControlParameter Name="user_id" Type="Int32" ControlID="CurrentUser" PropertyName="Text" /> </SelectParameters> </asp:SqlDataSource> <asp:FormView ID="form_DUser" runat="server" DataKeyNames="user_id" DataSourceID="sqlds_SelectedUser" Width="100%">....Dir sir,
I want set value RadateTimePicker with javascript:
var
radStartTime = $find("<%= RadDateTime_BD.ClientID %>")
radStartTime.set_selectedDate(
"2010,2,2,8,30,0");
But not working,
Can you help me?
Thanks for support,
Brgs,
<telerik:RadAjaxLoadingPanel ID="LocationsLoadingPanel" runat="server" Transparency="30" Skin="Vista"></telerik:RadAjaxLoadingPanel> <telerik:RadAjaxPanel ID="LocationsPanel" runat="server" LoadingPanelID="LocationsLoadingPanel"> <telerik:RadTreeView ID="LocationsTreeView" runat="server" EnableDragAndDrop="true" MultipleSelect="true" EnableDragAndDropBetweenNodes="true" AllowNodeEditing="true" OnContextMenuItemClick="LocationsTreeView_ContextMenuItemClick" OnClientContextMenuItemClicking="onClientContextMenuItemClicking" OnClientContextMenuShowing="onClientContextMenuShowing" OnNodeEdit="LocationsTreeView_NodeEdit" OnNodeDrop="LocationsTreeView_NodeDrop" OnClientNodeDropping="onNodeDropping" OnClientNodeDragging="onNodeDragging"> <ContextMenus> <telerik:RadTreeViewContextMenu ID="MainContextMenu" runat="server"> <Items> <telerik:RadMenuItem Value="Rename" Text="Rename ..." Enabled="true" ImageUrl="images/icons/edit_48.png" PostBack="false"> </telerik:RadMenuItem> <telerik:RadMenuItem IsSeparator="true"> </telerik:RadMenuItem> <telerik:RadMenuItem Value="addLocation" Text="Add Location" ImageUrl="images/icons/add_16.png"> </telerik:RadMenuItem> <telerik:RadMenuItem Value="editDetails" Text="Edit Details" PostBack="true" /> </Items> <CollapseAnimation Type="none" /> </telerik:RadTreeViewContextMenu> </ContextMenus> </telerik:RadTreeView> </telerik:RadAjaxPanel> <telerik:RadWindowManager ID="locationRadWindow" runat="server" />RadWindow window1 = new RadWindow();window1.NavigateUrl = "http://www.google.com";window1.VisibleOnPageLoad = true;window1.Width = 500;window1.Height = 300;window1.VisibleOnPageLoad = true;locationRadWindow.Windows.Add(window1);