Skip to content

Replies

0
ganesh khare
ganesh khare answered on Sep 27, 2017 12:03 PM

Hi Mike,

PFA please suggest me how can i (un)checked group level checkbox on all child (un)checked 

0
ganesh khare
ganesh khare answered on Aug 14, 2017 7:29 AM

Hi Mike,

 My requirement like as above mention description but i am not able to do that can you help me for that 

0
ganesh khare
ganesh khare answered on Apr 7, 2017 1:07 PM

Hi Mike,

I want checkbox is check by default when ultragrid is loaded can we do setting in properties?

0
ganesh khare
ganesh khare answered on Feb 23, 2017 10:00 AM

Hi Mike

when i have select any row in ultragrid then i dont want to selected row backgroung color blue what can i do for that.

0
ganesh khare
ganesh khare answered on Feb 21, 2017 3:23 PM

Mike Its Working

Thanks a lot

0
ganesh khare
ganesh khare answered on Feb 21, 2017 2:57 PM

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 

0
ganesh khare
ganesh khare answered on Feb 15, 2017 2:58 PM

I am relay very appreciate with your reply Mike. I have one more question i want to check the chekbox on billingPolicyGroupUltraGrid_AfterRowActivate event and after that i want to call the cell change event is it possible. if yes please provide example.