Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

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 ...
4
votes
1answer
2k views

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. ...
2
votes
3answers
767 views

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(); ...
1
vote
1answer
236 views

How to add GroupByRow Double Click event handler for Outlook Group By in Infragistics Win Grid

I need to handle the double click event of a GroupByRow description and cannot figure out how to do that.
1
vote
2answers
845 views

Infragisitcs ultrawingrid columnchooser and column filters

I have an Infragistics UltraWinGrid and I'm using its built-in column chooser. However there is an issue whereby if a user has a filter on a particular column, then hides that column, the filter is ...
1
vote
1answer
342 views

UltraGrid how to set a custom editor via EditorAttribute

I am trying to get an UltraGrid to use a custom editor set via the Editor Attribute. However it seems to ignore the setting and just use its internal editor. Here is my code: public class ...
1
vote
1answer
284 views

Infragistics UltraWinGrid CTRL+A behaviour when using dropdown filters

I have a standard UltraWinGrid (V8.2) with some column/dropdown filters. I have implemented CTRL + A to select all rows. However when there is a filter applied, I only want to select all on the row ...
1
vote
0answers
117 views

Dataadapter and datasets issue

I have the following situation - three tables in the db : - um_users (id, name) - um_roles (id, description) - um_user_roles (user_id, role_id) I load into a data set two datatables : the "users" ...
1
vote
1answer
1k views

How do I make pressing the Enter key cause focus to move to the cell below like Excel's default behavior?

I am using an Infragistics UltraWinGrid v9.1. I want to allow the user to enter numerical data in a cell, press Enter and then have the focus on the cell below, like you see in Excel. It appears that ...
1
vote
2answers
3k views

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: ...
1
vote
2answers
604 views

Infragistics Windows Grid

I'm using the Infragistics WinForms UltaGrid control and I'm setting the RegexPattern property. How do I get the grid cell I'm setting the RegEx for to actually use that pattern to restrict entry? ...
0
votes
0answers
38 views

UltraWinGrid nested object properties binding with BindingSource

I am working on a winforms application where I am rendering domain/object data via an ultrawingrid. I am using a bindingsource to bind the object to the grid.For simple objects this works quite well. ...
0
votes
1answer
109 views

Enable/Disabe selectAll check box in Infragistic UltraWinGrid

I have used Infragistic UltraWinGrid to display data on the Grid. In this grid, there is one check box column. I have added check box in header in this column to selectAll option. Now I want to ...
0
votes
2answers
144 views

How to get column index of ultra grid view on right click

When i right click on ultra grid view or may be grid view . I want to display different contextmenu strip for different columns. But when i right click i get index of column which i selected not which ...
0
votes
1answer
58 views

show Rich text Formatted data in an infragistics win grid cell

How do I show Rich text Formatted Text in an Ultra Win Grid cell (infragistics). I am storing this data as a varbinary(MAX) in the database.
0
votes
1answer
27 views

How to specify default behaviour for wingrid features

When you drop a grid on a form and go through the wizard there are a number of places where "Default Behavior" is an option (for example, under Features -> Updating -> Allow Row Adding). Where do you ...
0
votes
0answers
44 views

Apply UltraGridFilterUIProvider Date 'Today' Filter to UltraWinGrid ColumnFilter

How would I go about applying the UltraGridFilterUIProvider Date Filter called Today to my ColumnFilter? My initial thought was to do this, but it doesn't ...
0
votes
2answers
462 views

Infragistics WinGrid: How to make a CheckBox column initially checked

I have an Infragistics WinGrid (UltraGrid, UltraWinGrid, whatever...) with an unbound column. It has Style = Checkbox and DataType = System.Boolean. I have set DefaultCellValue to true, but every new ...
0
votes
1answer
316 views

Hide UltragridRow that has no visible child rows after applying RowFilter

So, I am setting the DataSource of my BindingSource to the DefaultViewManager of a DataSet that has a DataRelation. I then set my BindingSource as the UltraGrid's DataSource before applying a ...
0
votes
2answers
266 views

How to change the cell appearence of the filter in UltraWinGrid

I am using UltraWinGrid control and I want to customize its filtering. I am able to get all the values from the ValueList property . private void dgridData_BeforeRowFilterDropDown(object sender, ...
0
votes
2answers
191 views

Reading column value in cell change event

I've an .net winforms screen with infragisitics ultrawingrid bound from the database[Col Names:Id, Name, Age]. Am adding a checkbox column for each row from the client side while showing the grid. Am ...
0
votes
1answer
243 views

Adding Row Specific context menu to an UltraWinGrid

I'm a newbie using Infragistics. I'm trying to add context menu to a specific row/column in UltraWinGrid, which im not able to. Looks like adding context menu to the grid is simple but adding it to a ...
0
votes
2answers
123 views

Infragisitics error

How do I get rid of this build error in my winforms app? Error 121 The type 'Infragistics.Win.UltraWinGrid.UltraGridRow' exists in both 'c:\Program Files\Infragistics\NetAdvantage for .NET 2007 ...
0
votes
1answer
159 views

Disabling scrollbar in Ultrawingrd control

How do I hide/disable horizontal scrollbar in an Infragistics Ultrawingrd control? Thanks.
0
votes
1answer
289 views

Infragistics UltraWinGrid Hidden Occasionally

I have a Windows Form custom control that displays alerts on a customer record. The control uses an Infragistics 9.1 UltraWinGrid to display these alerts, which is filled from a dataset populated by ...
0
votes
1answer
200 views

Browseable attribute and Infragistics WinGrid

I'm struggling with the databind behaviour of the Infragistics WinGrid. It's possible to manually define a data schema (which I'm doing) and it's also possible to tell the grid when binding that I ...
0
votes
2answers
2k views

Infragistics Ultragrid valueList/UltraDropDown

What event to I need to handle to allow users to add "fruit" the either a valuelist or ultra dropdown. Since it is a KVP I always get format exception Dictionary<int,string> fruits = new ...
0
votes
2answers
639 views

Ultrawingrid - how to display #1/1/1800# as blank ( as if null )

Ultrawingrid 9.2 VS2008 .net 3.5 My wingrid uses a bindingsource. All datetimes which are null in SQL Server are delivered to the bindingsource as #1/1/1800# I would like Ultrawingrid to display ...
0
votes
1answer
395 views

How to exit grid with ctrl-TAB when grid is on a tabpage (onkeydown works when grid not on tabpage)

winforms .net 3.5 Ultrawingrid 9.2 In my subclass of Ultrawingrid.Ultragrid : Protected Overrides Sub OnKeyDown(ByVal e As System.Windows.Forms.KeyEventArgs) If e.KeyCode = ...
0
votes
1answer
1k views

Making Infragistics ultrawingrid, desired columns readonly

I am stucked at the situation where I need to disable few columns of a each row ,except newly added row. That is I have 10 columns in grid and I want first three columns that are binded from the rows ...
0
votes
1answer
124 views

How to cause a GridView to allocate its memory as XML

TL;DR: When browsing a program's DataGridView control's properties using ManagedSpy it causes that program to allocate its DataGridView data as XML in its memory. How can I cause that same thing to ...
0
votes
1answer
757 views

How to get Embedded Editor Control of UltraWinGrid on CellChange Event

I am associating a user control as Editor control of UltraWinGrid in InitializeLayout event. What I am trying is to retrieve the Editor Controls instance when I am chaning cell value.
0
votes
1answer
2k views

How do I Add unbound columns to an Infragistics UltraGrid only once without throwing an exception?

With the NetVantage Windows Forms 9.1 UltraGrid, I want to add some unbound columns to do some simple calculations. The first time this code is entered in the InitializeLayout delegate, it finds that ...
0
votes
1answer
1k views

How can I emulate key press with copy & paste in an Infragistics UltraWinGrid?

I am using the Infragistics UltraWinGrid (version Win 9.1). The default behavior is to allow the user to type text into a cell. When one copies multiple cells from an Excel spreadsheet, only the first ...
0
votes
1answer
406 views

Upgraded Infragistics and my application is not allowing Ultrawingrid to be editable anymore

I have an application that uses the Ultra Win Grid and has a column with a check box in it. It used to be that when I clicked on the check box it would allow you to edit it but now you can't. ...
0
votes
1answer
926 views

Mimicking the UltraGridColumnChooser's drag & drop ability

(Infragistics 2008 Vol. 3, CLR 2.0) Infragistics's UltraGrid comes with a column chooser user control, which is simply a vertical arrangement of columns with checkboxes that toggle a column's hidden ...
0
votes
3answers
2k views

Infragistics grid “on-demand” appearance

We're using Infragistics grid (most probably, we'll have 8.2 version at the end) and we want to configure row/cells appearances "on-demand" in order to be able to provide sort of "dynamic appearance". ...
0
votes
2answers
946 views

How can we set the visibility of a button placed inside a Infragistrics Windows Grid control

I have a form where i have used Infragistics windows grid control to display the data. In this, i have placed a button on one of the cell. I want to set its visibility either True or False based on ...