Questions tagged [ultrawingrid]

WinGrid™ is a component of the Infragistics NetAdvantage suite. It is a hierarchical data grid control with full support for bound and unbound data display that surpasses other .NET grids on the market and shifts your data-driven WinForms app into a new realm of more productive possibilities.

WinGrid™ is a component of the Infragistics NetAdvantage suite. It is a hierarchical data grid control with full support for bound and unbound data display that surpasses other .NET grids on the market and shifts your data-driven WinForms app into a new realm of more productive possibilities. The Windows Forms grid supports complex data entry scenarios, row edit templates, custom layouts, rich printing and print preview, easy interop with Microsoft® Excel™ and Adobe® PDF file formats, and an almost unlimited array of look and feel options.

This control also permits building more modern applications for tablets and other touch-enabled devices with the touch-supported Grid control. The Grid also features panning gesture support like vertical, fast, slow, and multi-direction panning and flicking; and multi-gesture support like tap, double tap, tap & drag, and tap & hold.

If you can't find help here, the Infragistics community forum for the WinGrid would be another great resource.

Ref: Infragistics | Windows Forms Controls

348 questions
18
votes
2 answers

How to sort an UltraGrid by multiple columns programmatically?

Say we have an UltraGrid. How can I sort it programmatically first by column A, then B, then C. Thanks!
Andrei
  • 4,122
  • 3
  • 22
  • 24
16
votes
7 answers

Infragistics UltraGrid: how to remove default selection of first row

I have put an UltraGrid on a WinForms user control. I have tweaked some settings so I can use the grid as a read-only multi-row select table. But there's one problem: by default the first row appears to be selected. But the Selected.Rows property is…
Gerrie Schenck
  • 22,148
  • 20
  • 68
  • 95
10
votes
2 answers

Are there alternatives to UltraWinGrid?

I've been using the Infragistics UltraWinGrid for a while in a C# project, and while it's very spiffy, it is sometimes a bit heavy to run (and editing it in Visual Studio can be hazardous). I'm looking for a lighter alternative. Looks (always a big…
MPelletier
  • 16,256
  • 15
  • 86
  • 137
8
votes
3 answers

How can I change the background color of the Infragistics' UltraGrid filter row?

Currently this is what it looks like: I'd like to change that blue color, but I don't know what property to change. I've tried changing what I think is the property to magenta or something that stands out in an attempt to find out what property I…
Only Bolivian Here
  • 35,719
  • 63
  • 161
  • 257
8
votes
2 answers

Checkbox column in Infragistics win ultragrid

Am a newbie to Infragistics. On my winforms app, am using Ultrawingrid to display data from database. How do I show a checkbox column as the first column in the grid? Also, I need to capture check/uncheck event and then read the corresponding grid…
Ed.
  • 1,654
  • 7
  • 20
  • 33
7
votes
1 answer

Making Infragistics UltraGrid Columns have "Spring" Behaviour

Oout of the box the Infragistics UltraGrid control allows you to make the last column in a grid spring to fill the remaining unused portion of the grids bounding rectangle. ____________________________ | Col1 | Col 2 | Col 3---->| | …
Mark Allanson
  • 1,368
  • 1
  • 10
  • 19
6
votes
3 answers

How do you get child bands in ultragrid without using related tables in a dataset?

I'm using linq to pull back an object (i.e. customer) that might have a collection of other objects(customer.orders). I would be nice if I can pass this list of customers to the ultragrid and a hierarchical view of customers and thier orders…
Bless Yahu
  • 1,331
  • 1
  • 12
  • 25
5
votes
1 answer

Change focus on the infragistics ultra grid?

I want to change the focus on my grid cell. Suppose I click on a cell[1,1] then I want to set the focus on cell[1,2]. Where cell[1,1] means cell of (column 1) and (row 1)
user5872784
5
votes
2 answers

Resize Infragistics UltraGrid to fit its content perfectly

How do I resize the entire ultragrid control in code to only show its contents? No blank space ( problem is that data table inside is sometimes small sometimes big) I have: ----------------------------- | | | | blank | | | | | …
Antea
  • 177
  • 1
  • 4
  • 10
5
votes
2 answers

Which event is raised on check change of checkbox in Infragistics UltraGrid?

I am using an Infragistics UltraGrid in a WinForms application. Which event is raised on "check change" of checkbox in Infragistics UltraGrid?
Nakul Chaudhary
  • 25,572
  • 15
  • 44
  • 47
5
votes
3 answers

Which event raise on cell value change in Infragistics UltraGrid?

I am using Infragistics UltraGrid in a Windows Forms application. I need an event which is raised on cell value change. I've tried many events like AfterCellActivate, AfterCellUpdate but was unable to find the right one.
Nakul Chaudhary
  • 25,572
  • 15
  • 44
  • 47
5
votes
1 answer

Infragistics Ultragrid How can I disable a row depending on a property

I would like certain rows in an Ultragrid to be disabled depending on a boolean Sync property in the row. I have thought of two different solutions but neither have worked out. 1) Databind the Sync property to the Activation property of the row. Is…
Jim
  • 1,333
  • 1
  • 11
  • 15
5
votes
5 answers

Infragistics UltraWinGrid Delete Confirmation

By default the ultraWinGrid pops up a delete confirmation box for any row deletions. How do I turn that feature off? If I'm deleting in the code, it's no problem: myUltraGrid.DeleteSelectedRows(False) But I don't know how to apply that when the…
Jeff
  • 8,020
  • 34
  • 99
  • 157
4
votes
3 answers

Infragistics Ultragrid - Combobox as column

I have a problem with the UltraGrid control from Infragistics. I have created a ultracombobox with a few values in it: UltraCombo ultraComboPaneel = new UltraCombo(); ultraComboPaneel.DataSource = articleList; …
Jelle Capenberghs
  • 794
  • 2
  • 14
  • 30
4
votes
1 answer

How do I render a column bound to a collection class as a child row in an Infragistics UltraWinGrid?

I have a UltraWinGrid that is bound to a DataSet, in which a couple of columns are themselves of a collection class type, like so :- [Name] - string [Description] - string [Components] = List [Levels] = List Currently, these last…
Rob Cowell
  • 1,610
  • 3
  • 18
  • 34
1
2 3
23 24