The datagridcomboboxcolumn tag has no wiki summary.
-1
votes
1answer
14 views
Binding SelectedItem of ComboBox in DataGrid with different type
I have a DataGrid which contains ComboBox as column.
Let consider DataGrid having ItemsSource as ObservableCollection and ComboBox ItemsSource is List .
I want to set the ComboBox SelectedItem ...
0
votes
1answer
39 views
A simpler way to use DataGridComboBoxColumn?
I have a WPF (.NET 4) DataGrid backed by a DataView from a DataTable, which has as one of its columns a DataGridComboBoxColumn. Everything is working for me, but I had to create a new class to hold ...
0
votes
0answers
26 views
Set IsReadonly property of DatagridComboBoxColumn through DataBinding
I have a DatagridComboBoxColumn in my datagrid which have its EditingElementStyle and ElementStyle defined as follows :
<dg:DataGridComboBoxColumn
Width="*"
...
0
votes
1answer
64 views
DataGridComboBoxColumn binding to ObservableCollection
I have the class Devices with Platform as one of the properties:
public partial class DevicesCollection : ObservableCollection<Device>
{
public DevicesCollection() : base()
{ }
}
...
0
votes
0answers
94 views
Error after setting different datasources for datagridview combobox cells
I am trying to display in DataGridView control names and fields of database tables. In every row name of a table is displayed in the first cell, and second column allows to choose any of the fields of ...
0
votes
0answers
46 views
Select rows which was changed in the datagrid with a datagridcomboboxcolumn
My datagrid is bound to the datatable WorkTypes which consists of 4 columns: id, workname, sparename , isactive. The datagrid has a datagridcomboboxcolumn bound to the datatable Spares (id ...
0
votes
1answer
166 views
Updating GridPanel Cell(ComboBox) based on another Cell(Combobox), Both the cell belongs to the same column?
As the subject specifies, i have a GridPanel with a ComboBox as a cell to one of the column.
By default each cell containing the ComboBox have the selected item as current rownumber, user has the ...
0
votes
0answers
29 views
Change a specified column to DataGridViewComboBoxExColumn in DotNetBar?
This question requires you to be familiar with DotNetBar UI library for Windows Forms.
I know how to add a DataGridViewComboBoxExColumn to a DataGridViewX, but it's useful only when I know which ...
0
votes
0answers
28 views
Customized DataGridViewComboBoxColumn does not save Datasource, DisplayMember, ValueMember when edited in properties menu
I am working on a customized version of the DataGridViewComboBox.
public class TestDataGridViewComboBoxColumn : DataGridViewComboBoxColumn,
...
0
votes
1answer
116 views
Not able to find “SelectedIndex” property of DataGridViewComboBoxColumn in Visual Studio 2010
I am new to windows forms application development.
I am using an editable grid view for data entry.
One of the fields in the grid view is of type ComboBoxColumn. I am filling the data in code.
My ...
0
votes
0answers
373 views
Loading Comboboxes and Setting its value in each row in Datagridview
I am displaying the data in datagridview when user enters PickingNoteNo in the textbox.Then i am adding two comboxes to the Datagridview programatically and setting their respective Datasource.But the ...
0
votes
1answer
133 views
WPF How to make the background of DataGridComboBoxColumn to be the same as DataGridTextBoxColumn
I have a datagridCombox Column in datagrid.
In order for the combobox to show like a combobox all the time (click or not)
The combobox is implemented as this
...
2
votes
1answer
406 views
Multi column combo box or DataGridCombo Box columns shrinking
I have a multi column combo box.When i use it for the first time then it works fine then
when i clear it and again enter data into it,all the columns shrink and only 1-2 letters are visible from each ...
0
votes
1answer
217 views
WPF DataGridComboBoxColumn style
I use ComboboxColumn in DataGrid which works fine.
However there is a style issue:
When cursor is not on the column, the ComboboxColumn looks like a textboxColumn. Once I click it, a tiny arrow on ...
2
votes
2answers
673 views
VB.NET datagridview one-to-one mapping of combobox
I have a datagridview with two textbox columns and one combobox column. The combobox's DataSource is bound to enums for the values of the dropdown. The datagridview's DataSource is bound to a custom ...
0
votes
1answer
259 views
DataGridComboboxColumn Binding with ObservableCollection
My little project looks now quite different. Now I have ObservableCollection OC1 with data which I want to bind with whole DatagridTextBoxColumns (via Binding Path) and ObservableCollection OC2 where ...
0
votes
1answer
653 views
C# and WPF - Binding List on ItemsSource on DataGridComboBoxColumn
I want to bind List (which contains data from LINQ query) with DataGridComboBoxColumn as ItemsSource. SelectedValue property is taken from other List with data for whole DataGrid.
XAML:
...
1
vote
0answers
65 views
When I try to make a DependencyProperty: Cannot find governing FrameworkElement or FrameworkContentElement
I am building a custom DataGridColumn by inheriting from DataGridBoundColumn but when I try to make a DependencyProperty this error appear in the output window
System.Windows.Data Error: 2 : ...
1
vote
0answers
207 views
Why is my DataGridComboBoxColumn clearing its value when I navigate away from it?
I have a DataGrid with two columns: 1) a DataGridComboBoxColumn and 2) a DataGridTextColumn. I have set up data validation so that if one has a value, the other will be in error until it also has a ...
0
votes
0answers
26 views
Can't change display location of the column
I had a DataGridView which would populate itself based on a data table data source. Then I would programatically add a DataGridViewComboBoxColumn to the end and set the values in it based on the data. ...
0
votes
0answers
194 views
Update DataGrid cell value with selected value from ComboBox in DataGridTemplateColumn
I have a gred which gets its data from ObservableCollection called FormDataList; the grid also contains a combobox which is within a DataGridTemplateColumn, and it reads the data to be displayed on ...
0
votes
0answers
228 views
dynamically adding DataGridComboBoxColumn to DataGrid in WPF
I'm loading programatically tables from my db model to a DataGrid in my application
Whenever I identify I loaded a "Base" named column, I want to give the user the option whenever he wants to edit ...
0
votes
1answer
136 views
.NET 4.0 DataGridCombobox SelectionChanged issue
I have a requirement in my program that the object bound (from ViewModel) in a Combobox is updated as soon as an item is selected in the combobox. Currently, the object only updates once the edit is ...
0
votes
1answer
311 views
How to bind DataTable to DataGridComboBoxColumn
I have and DataGridComboBoxColumn in the DataGrid a WPF window. I am assigning DataContext to Window as below:
cls = new MyClass
{
selValue = 2,
DataGrid = ...
0
votes
1answer
645 views
WPF change datagrid combobox ItemsSource to value of another datagrid combox
I have a datagrid with 2 DataGridComboxClolumn elements and want to change the ItemsSource of the second when the value of the first is changed. How can I set up such a binding?
Note: the datagrid ...
0
votes
1answer
288 views
Custom ComboBox Column for DataGridView
We have a Custom ComboBox working on a form that displays some shapes instead of text. To do that all I had to do was to override the OnDrawItem function and it displays what we want. Here is a ...
1
vote
1answer
271 views
Adding data to a dataGridView row in which there is already a comboboxcolumn
I have a DataGridView that is populated at runtime with a couple of ComboBoxColumn columns. For example,
var newCountryColumn = new DataGridViewComboBoxColumn();
newCountryColumn.HeaderText = ...
0
votes
1answer
204 views
Dynamically fill the ComboBox of an DataGridComboBoxColumn (WPF, DataGrid)
in my WPF application, I have a DataGrid, which is bound to an ObservableCollection.
<DataGrid x:Name="DataGridTeilnehmer" HorizontalAlignment="Left" VerticalAlignment="Top" ...
1
vote
2answers
1k views
Extjs 3.4 : get value from the other editable field
here's my code :
{header: "Kabupaten", width: 60, sortable: true, dataIndex: 'id_k',
renderer: function(value, metaData, record, rowIndex, colIndex, store) {
return ...
0
votes
1answer
152 views
DataGridViewComboBox Column Datatsource
I need to Bind a DataGridView to a Data Table that I will populate through Oledb.
This part isn't a problem, but what I want to do is then replace some of the standard columns of the DataGridView ...
0
votes
0answers
134 views
DataGridComboBoxColumn
I have DataGrid with ComboBoxColumn and I bind it with some data, but when I run the application there is no value displayed in ComboBox. However when I drop it down I see the list of values. Can ...
1
vote
1answer
539 views
Binding WPF DataGridComboBoxColumn with MVVM (WAF)
Help me to solve binding problem. The poject is in WPF + WAF + ef code first. I want to bind DataGridComboBoxColumn value to models property, but something not working.
Models:
public class ...
0
votes
0answers
45 views
DataGrid with Combobox column with ObjectDataProvider
I have a Enum defined in a different dll: Model.dll I use it to create the ObjectDataProcider in the UI side:
xmlns:model="clr-namespace:Model;assembly=Model"
...
0
votes
3answers
159 views
DataGridComboBoxColumn Binding with 2 lists
I have trouble with binding the values of a ComboBox in my DataGrid:
<DataGrid Grid.Row="1" Grid.Column="0" ItemsSource="{Binding ListeGrilleTarifaire}" Name="dg_ForfaitCommune" ...
0
votes
1answer
226 views
sorting in DataGridComboBoxColumn in datagrid in wpf
I have datagrid which is having 1 of the column as DataGridComboBoxColumn. Displaying of existing data, binding of itemsource, updating source when selection changes is working fine.
The problem is ...
0
votes
1answer
546 views
Adding a comboboxcell to datagridview dynamically
I have a datagridview that gets populated dynamically. I want some of the columns to get populated with a combobox depending on some condition.
But my comboboxcell gets added at the bottom most row ...
2
votes
0answers
234 views
How to use DataGridComboBoxColumn?
I created a DataGrid and added a DataGridComboBoxColumn programmatically.
public partial class MainWindow : Window
{
private DataGridComboBoxColumn weightColumnChar = new ...
0
votes
1answer
1k views
Why DataGridView ComboBox displays the ValueMember value?
I am currently working in C# window application. There I use data grid view combo box in the DataGridView. While clicking the drop down box it displays the Name field, if I select the name field from ...
1
vote
1answer
901 views
Bind a multicolumn devexpress combobox that is inside a gridview
So I have a Dev Express gridview that is being bound to its data source in the cod behind. This data source is just a regular ORM object and it is working fine. I am trying to get one of the columns ...
2
votes
0answers
246 views
Setting DataGrid ScrollViewer.IsDeferredScrollingEnabled=“True” creates issues with DataGridComboBoxColumn Scrolling
I have an application that uses a WPF DataGrid that has thousands of rows. I was having performance issues with scrolling using the Vertical ScrollBar so I did some research and found out I can defer ...
0
votes
1answer
234 views
Binding a DataGridComboBoxColumn to s static Source
I have a DataGrid with a DataGridComboBoxColumn and I want to bind it to a static source containing only options "A","B","C"
current xaml:
<DataGridComboBoxColumn x:Name="ControlOption" Header ...
1
vote
0answers
388 views
Binding DataGridComboBox Column to a List of Values
I am binding a DataGrid to a DataTable:
DataGrid has 4 columns:
1. CheckBox (no issues)
2. Text Box 1 (no issues)
3. Text Box 2 (no issues)
4. Combobox (Here is where I am facing the problem)
...
0
votes
1answer
541 views
Selected item not displayed in the DataGridComboBoxColumn
I have a DataGrid with two DataGridComboBoxColumns set in the XAML (copied from here):
<DataGrid x:Name="joinGrid" AutoGenerateColumns="False" CanUserAddRows="True">
...
0
votes
2answers
1k views
Unbound DataGridView : Need ComboBox In cell of 2nd column only when user clicks cell
I have a unbound DataGridView with two columns. First column is just string values.
Second column I want to display a combobox, only when user click the cell(not the whole column as ...
0
votes
1answer
147 views
Set the highlighted item in the comboBox's dropdown list as the current value on cell exit or cell leave
private void dataGridViewSales_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
if (this.dataGridViewSales.CurrentCell.ColumnIndex == 1)
{
ComboBox c = ...
0
votes
0answers
415 views
WPF DataGridTextColumn SelectionChanged Event
Sorry for my bad English.
I use just only first time the DataGrid, and i make many of many solution for it, that works good for me, but i have a big problem. My DataGrid has more and more same items ...
0
votes
1answer
3k views
adding 2 combobox columns in datagridview
I am using a datagridview with 2 combobox columns to show account no and description in vb.net 2005.
my query = "select acctno, acctdesc from mytable union select ' ','' from mytable" (why union? - ...
2
votes
1answer
1k views
Change DatagridviewTextBox Text When DatagridviewComboBox Selected Index Changes
In My DatagridView,I Have Two Columns, ComboxboxColumn and TextboxColumn. I want to change the value of textbox
when combobox selected index changes (in general combobox it has selected index change ...
0
votes
2answers
498 views
How to save changes to WPF datagrid showing data form 2 joined tables?
I have 2 tables:
Person:
p_id
p_name
c_id
Car:
c_id
c_name
Here is my XAML tag:
<DataGrid Name="dataGrid1"
ItemsSource="{Binding Path=myPath}"
...
0
votes
0answers
181 views
DataGridComboBoxColumn to DataGridTemplateColumn with usual ComboBox
I've got the working code sample with DataGridComboBoxColumn:
<DataGridComboBoxColumn Header="Price" Width="Auto" ItemsSource="{Binding Source={StaticResource coursesLookup}}" ...



