I'm using http://help.infragistics.com/Help/NetAdvantage/NET/2008.1/CLR2.0/html/WinGrid_Specify_Fixed_Rows.html to learn how to do fixed rows. I've been able to fix specific rows, but I do not get the pins to the left of each row to fix and unfix rows during runtime. I have the FixedRowIndicator set to Button. Is there anything else I need to do?
Thanks.
-Nick
Step 5 on the article is specifically setting AllowFixing to False so the user can't fix rows. Just take that out (or set it to true).
I've tried that but it doesn't work. Should this still show up if I have a hierarchical grid?
I'm not sure. I would think it should work. I could be wrong, but at the very least, I would think you could fix root-level rows. Can you fix rows in code? If you can fix the rows in code, I can't see any reason why the user would not be allowed to fix the rows.
Are you hiding the RowSelectors in your grid?
I can fix rows in code. How do I find out if I'm hiding rowselectors?
Use the RowSelectors property (on the Override) to turn these on or off.
That worked, thanks!