
GridView
oGridView = (GridView)sender;
GridViewRow oGridViewRow = new GridViewRow(0, 0, DataControlRowType.Header, DataControlRowState.Insert);
TableCell oTableCell = new TableCell();
//Add Department
oTableCell.Text =
"Customer Info";
oTableCell.ColumnSpan = 3;
oGridViewRow.Cells.Add(oTableCell);
//Add Employee
oTableCell =
new TableCell();
oTableCell.Text =
"Contact";
oTableCell.ColumnSpan = 4;
oGridViewRow.Cells.Add(oTableCell);
oGridView.Controls[0].Controls.AddAt(0, oGridViewRow);
DataField='<%= GridColumns.Invoice.VendorName %>'
<telerik:AjaxSetting AjaxControlID="TimerUpdate">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="TimerUpdate"/>
<telerik:AjaxUpdatedControl ControlID="LblWatchList"/>
</UpdatedControls>
</telerik:AjaxSetting>
It gives me, The method or operation is not implemented.
[NotImplementedException: The method or operation is not implemented.]
System.Web.UI.Timer.set_Visible(Boolean value) +54
it seems like RADAjaxmanager is trying to set visiability of a control regardless it has a visiable property or not, and it through an exception.
do i have to put them into RADAjaxPanel? thanx