ultragrid

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---->| | | I have searched but cannot find a method of making a column that is not the ...

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<Component> [Levels] = List<Level> Currently, these last two fields are hidden columns when bound to the datagrid and used to d...

How to refresh an Infragistics UltraGrid ?

I am using Infragistics UltraGrid with datasouce Windows Bindingsouce. On change, I provide datasouce to Bindingsouce and call DataBinding of UltraGrid. Value in the datasouce of Bindingsouce changes, but that is not reflected in the UltraGrid. ...

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 cell's data will be pasted into the UltraWinGrid. One can easily change the behavior to paste multiple cells by setting the UltraWinGrid ...

UltraTree - Mixing Bound and Nonbound nodes?

Using UltraTree with vb.net. Is it possible have a bound tree, but to also manualy add a node with its own child nodes? something like this: Customer (bound) Contacts (not bound) Invoice (bound) Invoice (bound) Invoice (bound) Customer (bound) etc ...

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 the KeyUp event might be better than the KeyPressed event for this, but I keep throwing an exception that I have gone beyond the bounds of ...

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 the columns don't exist yet and then adds them. Suprisingly, when I get new data, rebind the grid, and then enter this delegate again, it s...

Bind data to UltraGird on each row expand

hi. please tell me how to get and bind data to UltraGrid dynamically on each BeforeRowExpanded event. i have large amount of data which i have to show on each row expanded event. please tell me any useful article/link. this data is in hierarchical form. ...

Ultragrid in vb6 Small help

hi .. it is very difficult to find any answer on Ultragrid .. ...i hv small small issue and could not solve ..if u can help me out plz help me... 1) how to insert new row when click on add button...if any previous row is there has to clea out and add only 1 new row.. how to delete row on click of delete button (i tried using deleteselec...

how can i get type of multiband data, stored in ultragrid datasource ?

So, i have ultragrid. It stores multilevel list. i need to get type of each list in datasorce. How can i do it? ...

Infragistics - Ultragrid - Group rows into categories

hi i would like to group rows in categories like that : http://img199.imageshack.us/img199/9152/capturegww.jpg I konw how to do this with OutlookGroupBy but its not possible to put the same row into severals categories So is there a way to group rows while beeing possible to put the same row into several categories at the same time ? ...

How to save new records inserted in a grids child band?

hi! the following snippet loads the data from three tables in two datasets and adds a relation between them : - users (user_id, name) - roles (role_id, role_name) - user_roles(user_id, role_id); into a Infragistics ultragrid. The data is siplayed in the grid, offering the posibility to add new rows. but here come the problem...how shoul...

Infragistics UltraGrid: How to force a CellUpdate event after user selects from drop down.

Infragistics UltraGrid: Column has a drop down with auto-complete. How can I force a CellUpdate when the user selects an item from the list and not have to wait for him to hit enter or click a different cell. ...