I was going through the documentation to find a way to handle a grid command on the client side. The documentation states that there is a client event for this
<ClientEvents OnCommand="RaiseCommand" ... />
however, when I try to use this command I get a design time and runtime error say this property is not valid.
<ClientEvents OnCommand="RaiseCommand" />
Error:Type 'Telerik.Web.UI.GridClientEvents' does not have a public property named 'OnCommand'.
I"m currently using version 2008.1.415.20 (Telerik RadControls for ASP.NET Ajax)
Please advise
| .radfd_MySkin textarea |
| { |
| visibility: visible !Important; |
| } |
DataView dv2 = dt2.DefaultView;
dv2.Sort = columnName +
" ASC";
cboSBOldValue.Items.Clear();
cboSBOldValue.DataTextField = columnName;
cboSBOldValue.DataValueField = columnName;
cboSBOldValue.DataSource = dv2;
cboSBOldValue.DataBind();
DataView dv2 = dt2.DefaultView;
dv2.Sort = columnName +
" ASC";
cboSBOldValue.Items.Clear();
cboSBOldValue.DataTextField = columnName;
cboSBOldValue.DataValueField = columnName;
cboSBOldValue.DataSource = dv2;
cboSBOldValue.DataBind();
