Highlight selected cell of a flex data grid - apache-flex

I have a flex data grid.I need to highlight the selected cell of the data grid.can u please help me?

AdvancedDataGrid does have a property selectionMode. Change property value single cell or multiple cells, you can select and highlight cells.

DataGrid automatically highlights the selected row (see the examples)
If you're looking for a table-like component, check out Grid or Tile.
It would also help if you would post your source code so that we would know what you are trying to achieve.

I know data grid automatically highlights the selected row.But I'm not searching for row highlight. I'm searching for cell highlight.For example say if I will click on 1st cell of data grid, instead of highlighting the first row it will only highlight the first cell(row-0,col-0)
Thanks!

by setting datagrid property -> selectionMode="singleCell"

Related

ExtJS Grid Selection

I am new to extjs 4. In my requirement the users selects a cell in a grid, that cell alone need to highlight. Instead of that the whole row has been highlighted. how to fix this issue?
you have to edit css (of row and cell class when hover event occure) based on selecting cell not row selecting.

Cell border in xtragrid

I have one Devexpress xtragrid with certain columns. Now I want to remove the bottom and left borders of the second and third column. Is there any way to achieve this? I tried to draw cell border with the grid back color. But it seems not working for me.
I have attached the screen shot of the grid with in which I have marked the expected behaviour. Kindly help me.
Please refer to the How to merge cells horizontally in GridView example which demonstrates how to implement a similar feature.

Flexicious Highlighted Cell

I'm wondering about highlighted cells in Flexicious Ultimate DataGrid. Not highlighted rows, but highlighted cells. I think maybe they are called active cells?
But my question is how can I remove all highligting of cells from the Grid? I don't want this functionality to occur. I can't find a way to do it.
Thanks!
enableActiveCellHighlight=false

How to select Row in QTableView?

I am new to QT, and I'm using QTableView, as shown below:
On the left side of the table, Qt is automatically showing a row number, as I've noted in red. How do I get rid of these numbers?
My other problem is, if I click any cell, only that cell is selected. How can I make it to where, when a user clicks a cell, the entire row is selected, like I noted in pink? For example, if I click the testApp-copy.itr cell then the entire third row should be selected.
Use
table->verticalHeader()->hide();
to get the vertical header and hide it, and
table->setSelectionBehavior(QAbstractItemView::SelectRows);
to make QTableView only select whole rows.
You may also want to specify the selection mode.

Resizing columns in adobe flex AdvancedDataGrid

I'm using an AdvancedDataGrid without the header row (AdvancedDataGrid.showHeaders="false"), my AdvancedDataGrid has 2 columns, where the first one will show a hierarchical data (tree).
The tree may be very long and very deep or may contain a long string in the node label so the user will not be able to see the whole vale of the tree node, I want to be able to resize the column using the vertical separator of the gris (the one displayed/separates between columns) or to be able to define a horizontal scroll bar only for the first column!
How can I accomplish this?!....Any idea ?!
Try to set the Advanced Datagrid tag's attribute 'wordWrap="true"'.

Resources