Hi,
I am using a CreationFilter to display a CheckBox on every UltraGridRow. I am unable to position it in such a way that the whole checkBox is visible.
Please see screenshot of the issue. Any help is appreciated.
Thanks
Sangeetha
Sorry... my previous post displays the wrong screenshot. The below is the right one.
Hi Sangeetha,
May I suggest using an unbounded column that you insert as the first one in each bound, you can also hide the row selector and you will end up with the same result (i.e. a checkbox at the beginning of each row) The solution I’m proposing will simplify your code since you don’t have to deal with the creation filter. You also don’t have to worry about saving the check status of each row somewhere, it wil be stored as the cell value for the inserted column.
I put together a small sample to show how to achieve this. Please take a look and let me know how this work for your case. If for some reason this approach does not work for your case, please send me the code you are using in the creation filter and I’ll be glad to take a look and figure out the reason for the drawing problem
Regards,
Ammar Zuriki
Senior Manager
NetAdvantage for Windows Forms
NUCLiOS – INFRAGISTICS iOS controls
TestAdvantage for Windows Forms, HP, IBM
TestAdvantage for WPF (HP)
Hi Ammar,
I have one last question. I noticed that I can show the RowSelector, but somehow the RowNumbers are not displaying. Is this a bug in Infragistics or is it because of CreationFilter usage?
I figured it out. It is not a bug. When the CreationFilter is used to position a CheckBox inside RowSelectorUIElement, the the TextUIElement with the RowSelectorUIElement also needs to be repositioned when not null. This TExtUIElement displays the RowNUmber in the RowSelectorNumberStyle selected.
Sangeetha,
you are exactly right, as we are creating the checkbox element and placing it on the row selector element, we'll need to reposition the text element that display the row number or the selected row indicator (the little triangle on the row selector when the row is selected) so that the checkbox does not draw itself on top of the text ui element.
if you need any help with achieving this please let me know.
Ammar
Ammar,
Also when CreationFilter is implemented, RowPin although visible, does not respond to user click and pin the row.
pinning rows seems to be working fine in the sample application I sent, I just had to turn on the feature so the button will show up and I was able to pin/unpin rows:
I just added this to Form_Load event handler:
ultraGrid1.DisplayLayout.Override.FixedRowIndicator = Infragistics.Win.UltraWinGrid.FixedRowIndicator.Button;
ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.VisibleIndex;
If this is not working on your end please update the sample app and send it back.
I am good. Everything works great. Please go ahead and close the ticket.
I'm glad the solution worked. Do you have any further question on this case? if not, may I close this ticket?
Thank You very much for your help. This works perfectly.
sorry, here is the attachement
You forgot the attachment. Could you please attach it.