Questions tagged [xamdatagrid]

Data grid control from Infragistics. Designed for WPF, can be used to produce reports, tables. Provides editing, sorting, filtering, grouping, and showing hierarchical data relationships

225 questions
0
votes
1 answer

DataGrid that masks columns

Can a DataGrid dynamically mask the columns to be displayed? Current Setup DataGrid <--Binding--> Collection The type Customer has about 100 different fields defined. Different views need to display different sets of columns (about 20…
mauryat
  • 1,610
  • 5
  • 29
  • 53
0
votes
1 answer

How do I set keyboard focus to the Add Row after adding a row

I have a XamDataGrid (version 2011.2) in a WPF application, when a user has tabbed off of the "Add New" row I need the focus to return to the first cell of the Add New row so they can enter another record, the default behaviour keeps the focus on…
ChrisWay
  • 1,157
  • 16
  • 33
0
votes
1 answer

how to enable/disable a command based on data changed in Infragistics xamdatagrid?

I am using MVVM in my WPF4 application. In my application, the ViewModel has an ObservableCollection ProductsList property, an ICommand Save command property. The Product class has two property: ProductName and Price. In the UI, the window's…
Ying
  • 1
  • 1
0
votes
1 answer

Creating a horizontal separator in xamDataGrid

I want some way of indicating a separation or line between two records whose dataitems are known, in a XamDataGrid. Currently I'm doing this by adding a background brush to the rows that contains a gradient (the top row has solid red near the…
Neil
  • 3,100
  • 5
  • 29
  • 36
0
votes
1 answer

How to set XamDataGrid Cell's Tooltip thru property in View Model

I'm implementing WPF XamDataGrid over MVVM architecture. Wondering how can we set the tooltip text of the cells by binding to properties in the View Model file? Any suggestions will be welcome! Anshuman
Anshuman
  • 577
  • 1
  • 8
  • 23
0
votes
1 answer

XamDataGrid Field/UnboundField Not Showing

I have a XamDataGrid, which I'm trying to bind to a BindingList collection object. When I set AutoGenerateColumns to true, it shows all the rows and columns, but when I set it to false and define columns using Field or UnboundField, It just shows…
Anshuman
  • 577
  • 1
  • 8
  • 23
0
votes
1 answer

XamDataGrid XamTabControl WPF MVVM Peculiar Behavior

I'm facing a problem in implementing the following scenario: When the user selects a record in a XamDataGrid, the control flows into another tab showing the details of the selected record. The way I have done this is: At the selection change of the…
Anshuman
  • 577
  • 1
  • 8
  • 23
0
votes
1 answer

Filter objects in xamDataGrid

Now a days , i work with infragistics xamDataGrid. my grid not contain simple primitive data types , it contain custom object ( object have 2 property code and description). when i enable filter feature in grid it work well . but i found one error .…
0
votes
1 answer

how to enable summaries only for selected rows in xamdatagrid?

I am working on a wpf application using the infragistices grid.I searched the infragistics forums,googled and did not find anything, I did find that the devExpress grid does support this, but could not find similar solution for the infragistics…
Gokul
  • 136
  • 6
0
votes
1 answer

Changing colors in xamDataGrid cells

I have xamDataGrid bound to DataTable where first column contains reference values. Coloring of all other columns depends on whether the value in cells is or isn't equal to the value of reference column. The logic uses converter. What I want to…
Karel Frajták
  • 4,389
  • 1
  • 23
  • 34
0
votes
0 answers

Infragistics ExcelExporter Async

I need to export a same Infragistics DataGrid twice and update progress bar during the export. So i'm starting first export like this excelExporter.ExportAsync(_xamDataGrid, "excelFile", WorkbookFormat.Excel97To2003); the problem is that I cannot…
fedotoves
  • 757
  • 6
  • 7
0
votes
1 answer

XamDataGrid dynamic fields format poorly

So I have a simple window which contains only a XamDataGrid that holds preview data of a dynamic query generated at run-time... public partial class DataPreview : Window { public DataTable Data { get; set; } public DataPreview(string SQL) …
Kevin DiTraglia
  • 25,746
  • 19
  • 92
  • 138
-1
votes
1 answer

sorting issue in the date/time column in xamdatagrid

In WPF , while clicking on the header of the date-time column in xamdatagrid , they are sorting according to the month wise in format of (mm/dd/yyyy) . I wanted it to be sorted according to the month and the format should be (yyyy/mm/dd) Waiting…
-1
votes
1 answer

XAMDATAGRID: Enable first row first cell in XAML or by Code

I am working with XamDataGrid where in i have to disable the Row:0 Cell:1 enabled all the times. to achieve this i Set AllowEdit for the field to false and then dynamically onClick of the cell for selection: i am trying to get rowindex and cell…
WPFKK
  • 1,419
  • 3
  • 20
  • 42
-3
votes
1 answer

How to clear filters applied on some column in wpf xam data grid on button click

I want on button click whatever filters are applied on some columns in my wpf xam data grid should clear off. I want something like recordfilter.clear() but i cannot use it outside RecordFilterChanged event So if i could do something like this on…
Rockerz
  • 31
  • 7
1 2 3
14
15