Hi
how to call an action so that after the change
textBox1.text
1001,1002,1009,1005
turned into
sfComboBox1
Name1,
Name2,
Name9,
Name5
and only filtered contained in
textBox1.text
please help
Gregory
Hi
Elakkiya
Thank you for your answer
the filter works
I still need that after changing textBox1.text (
1001,1002,1009
) it will dynamically and automatically appear in sfComboBox1 Name1, Name2, Name9 and mark
Regards,
Gregory
HI
how to add to gridGroupingControl
sfComboBox1
and
multiselectioncombobox
just like this is done with GridListControl
this.gridGroupingControl1.TableDescriptor.Columns[2].Appearance.AnyRecordFieldCell.CellType = GridCellTypeName.GridListControl;
|
SfComboBox sfComboBox = new SfComboBox();
List<string> country = new List<string>();
country.Add("India");
country.Add("Usa");
country.Add("Japan");
country.Add("China");
sfComboBox.DataSource = country;
this.gridGroupingControl1.TableDescriptor.Columns[2].Appearance.AnyRecordFieldCell.CellType = GridCellTypeName.Control;
this.gridGroupingControl1.TableDescriptor.Columns[2].Appearance.AnyRecordFieldCell.Control = sfComboBox;
//MultiSelection Combox
SfComboBox multiselectionComboBox = new SfComboBox();
List<string> states = new List<string>();
states.Add("Delhi");
states.Add("chennai");
states.Add("calfornia");
states.Add("newyork");
states.Add("Beijing");
multiselectionComboBox.DataSource = states;
multiselectionComboBox.ComboBoxMode = Syncfusion.WinForms.ListView.Enums.ComboBoxMode.MultiSelection;
this.gridGroupingControl1.TableDescriptor.Columns[1].Appearance.AnyRecordFieldCell.CellType = GridCellTypeName.Control;
this.gridGroupingControl1.TableDescriptor.Columns[1].Appearance.AnyRecordFieldCell.Control = multiselectionComboBox; |
Thank you for your answer
1.
when I change row of columns GGCIDMulti_2
it fills in other rows automatically and doesn't save to GGCds.Tables ["GGCDT"]
2.
when I change the row of columns GGCIDMulti from "1004,1006,1008" to "1002,1004,1007"
it doesn't auto-fill me with Expression_GGCIDMulti
3
when I change row of columns GGCIDMulti_3
it does not fill writes to GGCds.Tables ["GGCDT"]
and its not working Enable the header in DropDownListView and initialize the custom control
as in the example
https://help.syncfusion.com/windowsforms/combobox/dropdown
I am sending a sample
please help
Gregory
Hi Gregory,
We are checking the possibilities to achieve your requirement. We will check and update you with more details on January 27, 2022.
Regards,
Sampath Narayanan.S
Hi Gregory,
We are still working on this. We will validate and update you on the details on or before February 3, 2022.
We appreciate your patience and understanding.
Regards,
Sampath Narayanan.S
|
when I change row of columns GGCIDMulti_2
it fills in other rows automatically and doesn't save to GGCds.Tables ["GGCDT"]
|
You need to set the SfComboBox to the CellType of GridGroupingControl in the QueryCellStyle as shown in the below code snippet.
Sample Link : | |
|
when I change the row of columns GGCIDMulti from "1004,1006,1008" to "1002,1004,1007"
it doesn't auto-fill me with Expression_GGCIDMulti
|
You have loaded the ComboBox in Expression_GGCIDMulti column and also having different Datasource and the changed value is not in the underlying Datasource, the value will not be changed. Please revert to us with more details if we have misunderstood your requirement. | |
|
when I change row of columns GGCIDMulti_3
it does not fill writes to GGCds.Tables ["GGCDT"]
and its not working Enable the header in DropDownListView and initialize the custom control
as in the example
|
We could able to understand your requirement. Please provide more details with the video illustration about the requirement. It will be more helpful for us to provide the prompt and timely solution. |
1. does not display the content in the gridGroupingControl1.DataSource = GGCds.Tables ["GGCDT"] in SfComboBox
2.
does not change the selected items in the SfComboBox
in GGCds.Tables ["GGCDT"]
this can be seen in test_gridGroupingControl
should change after a change in SfComboBox
3. after changing the width of the column gridGroupingControl1 the appearance crashes
I send a video and a program
please help
Gregory
Hi Gregory,
We are checking the possibilities achieve the requirement. We will check and update you with more details on February 8, 2022.
Regards,
Sampath Narayanan.S
Hi Gregory,
We are still checking the possibilities achieve the requirement. We will check and update you with more details on February 10, 2022.
Regards,
Sampath Narayanan.S
we resign from Expression_GGCIDMulti column
Hi Gregory,
We have checked the possibilities to achieve the requirement. You have to set the value manually to the underlying datatable respective to the value of combobox. We have achieved the requirement but still we need to check some use cases. We will check and update you with more details on February 15, 2022. Please find the sample from below link.
Sample Link : https://www.syncfusion.com/downloads/support/forum/172171/ze/TEST_S~1525078742
Regards
Sampath Narayanan.S
Hi Gregory,
We are deeply regret that we couldn’t able to achieve all cases since there is no direct support of multiselection ComboBox in GridGroupingControl. You have to set the value manually to the underlying datatable respective to the value of combobox. However we have achieved some cases to set the value of comboboxcolumn of gridGroupingControl1 to the respective column of testGridGroupingControl. Please find the sample from the below Link.
Sample Link: https://www.syncfusion.com/downloads/support/forum/172171/ze/TEST_S~2-1212970405
Regards,
Sampath Narayanan.S