Search
You searched for the word(s): [no words] || User(s): pritesh
Showing page 1 of 5 (42 total posts)
< 1 second(s)
-
Hi Marcus,
Did you change this or it can not be done still even with new versions?
Thanks.
-
How to bind to selected columns in Xceed WPF Grid?
CurrentColumn is the only way I could find to get the selected column. There is no other property on the grid for easy access.
Also, how do we get multiple selected columns to ViewModel in MVVM. Is there a way to get it without using code behind?
Thanks in advance.
-
-
Thanks for the response Derek,
There are complex styling applied all through so I can not inherit the grid. Is there any alternate?
-
Hello,
My application has varying number of columns to be frozen and the decision has to happen at runtime.
Is there any way to assign FixedColumnCount in code behind (XAML.CS) at run time?
Thanks in advance,
Pritesh
-
Hello,
Is there an event that could be launched post data load for dynamically added columns in Xceed grid.
I am following MVVM/MVP variant in my UI and want to setup columns size after they are dynamically added in the grid via DataSource.
var source = ((DataGridCollectionViewSource)Resources[''datasource'']);
source.ItemProperties.Add(new ...
-
As far as I know GetFittedWidth does not return the width until the data is loaded in the grid. Please check if you have above code in one of the initialization blocks. Also you need to have some data in the grid.
-
Hi,
I am trying to add large number of rows to Xceed datagrid in code behind using a separate thread-
Application.Current.Dispatcher.Invoke(DispatcherPriority.Input, (Callback)delegate
{
AddRows();//Method to add rows to datasource bindinglist
});
However, my ADD operation is slow and holds the UI even if this is launched from ...
-
How do I setup Column width for dynamically added column to WPF datagrid to width of Title (header text)?
I saw GetFittedWidth but that does not solve my purpose as it seem to resize based on content length. Also these columns are added in Code behind (XAML.CS).
Thanks in advance.
Pritesh
-
It is better to keep the virtualization ON if you are dealing with big chunk of data. Runtime insertion will get slower and slower with size of the grid. As you have more # of rows grid takes time to sort and refresh UI as well which might put some hit on performance (case to case basic ofcourse).
You might want to keep virtualization ...
1
|
|
|
|