or
See a great url bellow
https://demo.magentocommerce.com/customer/account/create/
press submittbutton with out filling any any feilds
validation script are executing[ i dont think that it is going to server side]
how can i simulate this using telerik controls
| protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridEditFormItem && e.Item.IsInEditMode) |
| { |
| GridEditFormItem editFormItem = (GridEditFormItem) e.Item; |
| RadComboBox cmbRoles = editFormItem.FindControl("RoleCombo") as RadComboBox; |
| if (cmbRoles != null) |
| { |
| usersGrid.Controls.Add( |
| new LiteralControl("<script type='text/javascript'>window['RolesComboId'] = '" + |
| cmbRoles.ClientID + |
| "';</script>")); |
| } |
| } |
| function SetRoleVisibility(item) { |
| var cmbRoles = $find(window['RolesComboId']); |
| } |