Hey :)
I made a radgridview that displays too multiple columns
And within this radgridview , it has a column FirstNAme, MiddleName, LastName, QuizAverage, Quiz1, Quiz2, Quiz3 etc
How can I get the columns that contains the string "Quiz" such as QuizAverage, Quiz1, Quiz2, Quiz3 etc.. without specifying their indexes?
Just by mere Identifying wheter a ceratin column name contains "Quiz"
Thanks for help in this regard :)
TRACKING[] data = (from t in context.TRACKINGs
where SqlMethods.Like(t.EHT_ISO_DWG, "%02-02%")
select t).ToArray();
return new BindingList<
TRACKING
>(data);
InsertItemTemplate
) in GridView which can be customized either in code or with Property Builder? Or is it possible to change the GridNewRowElement during grid binding and which event to use?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);
}