<
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);
}