Questions tagged [ultracombo]

Component of the Infragistics NetAdvantage suite to provide the same functionality as a ComboBox control but provides a grid like drop-down list that allows for multiple columns of data to be shown.

17 questions
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
2
votes
3 answers

Preset Value on Infragistics UltraCombo

I have an infragistics ultraCombo that I set to a specific datasource. I want to pre-select one of those values so the user doesn't have to choose it (most of the time it will be the pre-selected value). However, when I set the ultraCombo to that…
Jeff
  • 8,020
  • 34
  • 99
  • 157
2
votes
1 answer

Adding UltraCombo to Already Formatted ToolStrip

I am trying to change the combo box in this image to an ultra combo control (this is a picture of a tool strip with controls added): In my view's constructor, I've added the following: UltraCombo cboArea2 = new UltraCombo(); ToolStripControlHost…
2
votes
1 answer

UltraCombo Filter Does Not Work

I have the following application code: Public Class Form1 Public Sub New() InitializeComponent() Dim datatableCombo = New DataTable datatableCombo.Columns.Add("ID", GetType(Integer)) …
BCarpe
  • 860
  • 10
  • 27
2
votes
1 answer

DataBindings not reflecting in collections

I have assigned 2 ultracombobox which is databinded to a collection. But when I change the value of the combobox the collection is not getting reflected. But when I change the value of the second combobox the changes made by the first combobox is…
A Coder
  • 3,039
  • 7
  • 58
  • 129
1
vote
1 answer

Refresh UltraCombo Content

I have to do some maintenance on an old VB.NET application (Visual Studio 2003) that uses Infragistics NetAdvantage 2006. I have a UltraCombo control binded to a DataView. How can I refresh the content displayed after a change in the database?
ggponti
  • 395
  • 5
  • 9
1
vote
1 answer

Set UltraCombo selected index when its bound to UltraGrid EditorComponent

I have two UltraCombo items that I am trying to set the selected index on during form load that are bound to a UltraGrid EditorComponent like so... With grdUserAccounts.DisplayLayout.Bands(0) For x = 0 To .Columns.Count - 1 Select…
Xss
  • 211
  • 1
  • 12
1
vote
2 answers

getting value from other column besides the valuemember column in Infragistics ultracombo

I am fairly new to using infragistics controls (started yesterday). While they are (very) impressive they do add another layer of complexity, which I am muddeling through. So I am asking what I feel to be a fairly simple issue: I am trying to get…
Sean
  • 517
  • 4
  • 11
  • 34
1
vote
0 answers

How can I know when a value is “re-selected” in a UltraComboEditor?

Similar threads: How can I know when a value is "re-selected" in a ComboBox? What event handler to use for ComboBox Item Selected (Selected Item not necessarily changed) I am using Infragistics UltraComobEditor to show some values by filling it's…
Niranjan Singh
  • 18,017
  • 2
  • 42
  • 75
1
vote
2 answers

DropDown UltraCombo programmatically c#

Can anyone help me how to open a ultracombo on runtime ? Example when a button pressed i want the ultracombo to open. I'm using infragistics 5.3 and ultracombo not ultracomboEditor. I have…
1
vote
1 answer

mouse click issue with Infragistics UltraComboEditor

I am using a control from Infragistics called "UltraComboEditor". I am having an issue where I want to click in the text area of the combobox editor and select all the text. I've tried down,up,click mouse events but it will not trigger. What will…
user1884032
  • 337
  • 1
  • 5
  • 18
1
vote
1 answer

Infragistics UltraWinGrid - How do you make a cell readonly but have a UltraCombo dropdown at the same time

I have an UltraWinGrid with a column that I've tied an UltraCombo dropdown to as an EditorControl. I want the user to only select an option from this dropdown, I don't want them to type in text into the grid cell, or to cut/paste text either. How do…
bob joe
  • 51
  • 1
  • 7
0
votes
3 answers

value not saving in database and error cannot implicitly convert type infragistics.win.ultrawingrid to decimal

Hello How are you Friends. i want to save data using grid after entering data when i press save button then data not saving in database i am sharing code please Anyone resolve this problem. These lines are giving error objInvDetail.mQty_Out =…
Zee
  • 5
  • 7
0
votes
1 answer

Is it possible to change an Ultracombo column caption

In vb.net, I have ultragrids, and I know with these it is possible to change the captions of a column (say, from first_name to First Name). On another window, I also have an UltraCombo (the combobox equivalent). When the down arrow is clicked to…
user6634034
0
votes
1 answer

Unable to tab out from UltraCombo control, when control data bindings Value, Text properties with null data source

In my project, I have INGRAGISTICS 11.1 version. I’m getting the issue in UltraCombo control. Unable to tab out from control. When we try to find the cause, we observed that OnValidating is failing (always e.cancel = true is returning). I have XML…
1
2