Adding rows and columns dynamically to table control - winforms

I need to create UI using winforms which is similar to the diagram. The table needs
row one - one label and 20 buttons
row two - combox box, box and 20 buttons
row three - combox box, box and 20 buttons
row four - combox box, box and 20 buttons
In the column zero of the row zero, i need to add label and from next column need to add buttons
In the column zero of the row one,need combobox and button and then from column1 again buttons.
How to do add combox box and button to the same column(column zero) using the tablecontrolpanel, the width of the column zero should be not changed.
I am using table control to add the 20 buttons, but don't know how to add the button and combox box to the same column.

Related

Put a Button on first row of WPF DataGrid Columns

I'm working on the WPF application.
My application has a DataGrid with 4 columns which works properly.
I only want the first row to have a Button with DataGrid width for inserting new data by user's click.
First row's columns may be use Column span.
Also I read How to add button in first row of datagrid column? .
This solution Insert Button to All Rows and control with Collapsing .
Thanks in advance for any help

How to add input tag to the last row of ui grid on button click

I am having a situation where I want to add input box at the end of the table. Is it possible to do this in ui-grid. I know rowTemplate, but it applies to whole column. I want to apply only to the last row of the table.

Two radgridviews - programmatically select row on 2nd based on selection on 1st

I have two radgridviews where a row selected on grid #1 by the user appears automatically in grid #2. The new row in grid #2 needs to be programmatically selected as there may be further processing for that new row and the row index is needed.
Both grids use a datatable for their items source.
It is possible that the user can select the same item twice from grid #1. So the selected row in grid #2 must be the most current selection from grid #1.
How do I programmatically select the new row in grid #2?
Thanks
Datagrid in wpf is a derive class of ItemsControl which has the SelectedIndex property which you can use to get the first index of selection in your grid after which you can set the second grid selectedIndex to the first's.
int selectedIndex=grid1.SelectedIndex ;
grid2.SelectedIndex =selectedIndex.

EXTJS 4. How to set different editors in a grid for the same column?

Consider a simple grid with one column. I want to edit this column using grid editor. The problem is that I want a different editor for each row. For example
1st row --> textfield
2nd row --> datefield
3rd row --> combobox
4th row --> textfield etc
When I click a column field (for example, second row) I use the setEditor method, but this seems to change the editor for the whole column not the specific row.
How can I achieve the specific functionality with extjs 4?

How to select a row, if i click a disabled cell in a wpf datagrid

I have a wpf dynamic datagrid with a column disabled. if i click a cell in that column, the row is not selected.
The following article shows how to detect the row and column of a DataGrid click:
http://www.scottlogic.co.uk/blog/colin/2008/12/wpf-datagrid-detecting-clicked-cell-and-row/
This will work for disabled columns also.
You can adapt this code so that when the row is found, you set its IsSelected property to true.

Resources