Hi Mike, I have facing one problem i Have a ultragrid with checkbox Problem is that when i have check 4 checkbox at coding level it show only 3 is checked 4th checkbox value return false i am not able get all checked box value. My code is that
1)i have check 4 checkbox.Its return only 3 is true and 4th checkbox is false
int i = 0;
foreach (Infragistics.Win.UltraWinGrid.UltraGridRow row in billingPolicyGroupUltraGrid.Rows)
{
foreach (Infragistics.Win.UltraWinGrid.UltraGridCell cell in row.Cells)
{
if (cell.Column.Key == "SelectToProcess")
{
if ((bool)cell.Value)
{
//if checked return true
i++;
}
}
}
}
can you provide any other solution to get all checked checkbox value