Hi,
Is there any way to change the field position by code in the field layout?.
The ActualPosition property is read only and changing the Column property has not effect... I guess that the ActualPosition property as priority over the Column property.
Anyone?
Thanks.
Hello sebl,
The FieldCollection object inherits an ObservableCollection<Field>. You can utilize the ObservableCollection's Move() method to accomplish what you are looking for. For example:
grid.FieldLayouts[0].Fields.Move(1, 0);
The two integer parameters are the oldIndex and newIndex, respectively.
For more information, you can see the documentation here.
OK,
This does allow me to change the index of the field, but the property ActualPosition is still the one that seems to be used when displaying the fields.
In the end, all fields remain at their current position.
Hello Ankit,
Thank you for your post. I have been looking into it and I and I created a sample project for you following your scenario and everything seems to work ok on my side. If the sample doesn’t satisfies all your needs feel free to modify it, so it reproduces your behavior and send it back to me for further investigation. I tested the project both with the RTM and latest Service Release of version 11.1.
Looking forward for your reply.
This works fine in the scenario where I an dragging and dropping the columns and then calling SaveCustomization().
But in between the two steps, I am adding one more step which is:
-Managing columns which shows the columns you want to add or remove, after doing that when I am hitting OK, in the back-ground I am clearing the customization with FieldPosition to accomodate the changes.
-And then I hit to SaveCustomization. I guess this is the reason why the XML doesn't gets the attribute's value for ActualPosition(ColSpan,RowSpan,Row,Column)
Is there a way in which we can save the customizations.
Now, All I want is a property which is fired whenever any fields in the dataGrid changes its position, so that I can fire the FieldPositionChangedEvent and get the XML file with field's position information.
Stefan,
For throwing more light on the requirement, this will explain what I really want:
-The "FieldPositionChanged/Changing" event is fired only when user drag/drop columns in the grid.(As far as the documention in your website is concerned).
-I am hoping that is correct, in that case, I want to achieve all the column's position information even after I have changed the columns by some other means.
For Eg, I changed the collection and bind it accordingly to the grid. In this case, even if the ActualPosition would have changed for each column, but the FieldPositionChanged event would not fire, and thereby I would not get the details to save the layout, in which case, while loading the same layout, the column order would be intermittent.
-Can you suggest me some solution for the above wired scenario. I would be very grateful to you.
Thanks,
Ankit Srivastava
I can say that the firing of the events is normal, because our controls doesn’t fire them if the action is done by code. If so, you can execute the desired code after the action you perform. This is like a pattern for custom controls, which is used to have better performance.
Hope this helps you.