Hey,
How can i freeze a row/column to make her un move, while scrolling others cells left and rigth?
(like "freeze panes" in excel)
tnx
Did you ever find a solution to this? I'm currently looking for the same behavior.
Hello,
I believe what you need is something that we call "column pinning". This is something that is currently not supported out of the box.
Please, take a look at the following forum post by our director of Product Management on what can be expected in the next release:
http://forums.infragistics.com/forums/p/16256/59385.aspx#59385
You can of course always suggest additional features via the following link:
Request a Feature or Component
Hi,
Set the IsFixed property of the column that to make un move. Like
<ig:XamGrid ItemsSource="{Binding}" Name="xamGrid1" AutoGenerateColumns="True"> <ig:XamGrid.Columns> <ig:TextColumn Key="CompanyName" IsFixed="Left"></ig:TextColumn> </ig:XamGrid.Columns> </ig:XamGrid>