or
RadPageView will be the successor of RadTabStrip and RadPanelBar by providing different views over a collection of pages. Each page is a stand-alone Panel where controls may be added through the Visual Studio Designer. The control is fully customizable yet greatly optimized for both memory consumption and performance. It will offer better item sizing and spacing, as well as extended orientation modes over the other two controls. Read more in the following blog posts:
To get technical support, either contact Telerik support or post in the PageView Forum.
private void CrewQtyText_ValueChanging(object sender, Telerik.WinControls.UI.ValueChangingEventArgs e){ foreach (Telerik.WinControls.UI.GridViewRowInfo row in RequiredRolesGrid.Rows) { if (Convert.ToInt16(row.Cells["Workgroup"].Value) > Convert.ToInt16(e.NewValue)) { e.Cancel = true; break; } } if(!e.Cancel) foreach (Telerik.WinControls.UI.GridViewRowInfo row in RequiredEquipGrid.Rows) { if (Convert.ToInt16(row.Cells["Workgroup"].Value) > Convert.ToInt16(e.NewValue)) { e.Cancel = true; break; } } if (e.Cancel) MessageBox.Show("Requirements already exist for workgroup " + e.OldValue);}