<telerik:RadDatePicker ID="dpMeetingDate" runat="server" MinDate="2009-01-01" Width="150px" ImagesPath="" Skin="Vista" Enabled="false"> <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" Skin="Vista" /> <DatePopupButton ImageUrl="" HoverImageUrl="" /> </telerik:RadDatePicker>if (dpMeetingDate.SelectedDate == null) { lblError.Text += "<br> - Select a meeting date"; canSave = false; }Dim
numberoflines As Integer = radgrid1.Items.Count
For i = 0 To numberoflines - 1
radgrid1.Items(i).Cells(0).Controls(0).Visible =
False
Next i
Hello,
I'm trying to get Cell Values for Selected Rows Client-side, and I followed the following example below, but what about if the cell is a text box or drop down list? I am getting null on innerhtml and value when I reference those controls within the grid. Is there a different method to access controls within the grid and not necessarily the bound fields?
http://www.telerik.com/help/aspnet-ajax/grid-getting-cell-values-for-selected-rows-client-side.html
thx Michael
<body onload="LoadPage();">
function LoadPage()
var editor = $find("<%=txtVisitNotes.ClientID%>");
editor.set_mode(1);
}
<telerik:RadAjaxLoadingPanel ID="LoadingPanelForSplitterFixing" Runat="Server" Skin="Web20" MinDisplayTime="500" Style="z-index: 90000 !important" IsSticky="True"/><telerik:RadButton ID="StartEditButton" Runat="Server" Skin="Web20" ButtonType="StandardButton" Text="Configure Dashboard" CssClass="editButton" OnClientClicked="EnableEditMode" AutoPostBack="False"/>.editButton{ z-index: 20; position: absolute; margin-top: 2px; right: 130px;}if (postBackElement.indexOf("BASEUNDERPAGEVIEW") != -1) { loadingPanel = $find(loadingPanelForSplitterFixingID); loadingPanelFixSplitterVisible = true; $get(loadingPanelForSplitterFixingID).style.width = $(window).width() + "px"; $get(loadingPanelForSplitterFixingID).style.height = $(window).height() - $('#TopBar').height() + "px"; $get(loadingPanelForSplitterFixingID).style.position = "absolute"; $get(loadingPanelForSplitterFixingID).style.top = $('#TopBar').height() + "px"; $get(loadingPanelForSplitterFixingID).style.left = "0px";}