Browse by Tags
All Tags » WPF » WPF Data Grid (RSS)
Showing page 1 of 2 (11 total posts)
-
How to display newly added/Inserted blank row when filtering is applied on a particular column(s).
Thanks
-
I posted a question on 16 March 2010. I received an email from Exceed stating that I should get an answer in 2 to 5 days. I have received none. My post was titled: ''DateTimeTextBox in celleditor problem?''
Does Xceed have a policy that if you don't pay $299+ for support you are ignored on the forum?
I'm not asking for priority ...
-
I just encountered this bug myself. Two grids in my application are acting weird after I insert something. When I press enter new data into the InsertionRow and press ''Enter'', a new row shows up in the grid area, but the same data still shows in the InsertionRow. The odd thing about this is that it seems to only happen for the first ...
-
Thanks for the official reply. Hopefully when you do this navigation overhaul, you can give us several options for the different scenarios:
1. Inserting a lot of new data. This should be done with the Tab and Enter keys, and the Enter key should take you back to the first InsertionCell by default, but is programattically changable ...
-
If I receive notification that the underlying data has had a new row added to the end, is there any better way to get it updated than calling DataGridVirtualizingCollectionView .Refresh which seems to force it to re-get all the rows it needs regardless of whether the new row needs displaying?
-
I am attempting to use the SaveSettings and LoadSettings methods of the WPF grid version 3.1.
I have saved the XML document using the following code snippet:
Dim serializer As New XmlSerializer(GetType(SettingsRepository))
Dim baselocation As String = AppDomain.CurrentDomain.BaseDirectory
MSDataGrid.SaveUserSettings(CurrentSettings, ...
-
I had this same problem, except *all* of my columns were read only. I ended up doing a popup that showed some controls for the intitial data. No matter how I templated the insert row, all controls in the template were read only and unusable.
-
Hello,
I have an Xceed WPF grid with 2 group headers which by default looks like this:
IsTravel: Program Expense Sheets (1 item)Team ID: Team 1 (3 items)$12345
$34234
$34534IsTravel: Travel Expense Sheets (1 item)Team ID: Team 2 (3 items)$234
$345
$342
By using this ...
-
Thanks for your reply.
Your workaround gave me an idea that is currently working. It seemed to me that a new ''DataGridDetailDescription'' is created for each parent row, as opposed to using this object in a static way (no static methods). So, I created my own workaround by changing my implementation of the DataGridDescription class ...
-
I had already implemented a DataGridDetailDescription. It is working in the sense that I can expand any parent row and the child objects are displayed in child rows in a subgrid. See the code below: (modified slightly to rename the names of my variables)
class ParentDetail : ...
1
|
|
|
|