Questions tagged [cellrenderer]
145 questions
0
votes
1 answer
React AG Grid Cell Custom Renderer
I have following problem:
I use ag-grid together with React and I want to use a custom cellRenderer.
obj.cellRendererParams = {
values: elems,
cellRenderer: function cellRenderer(params: any) {
return `

Peer
- 189
- 1
- 8
0
votes
0 answers
How can I get the data of a table row on a click button in the same row as the table row with button renderer and cell rederer?
I've implemented a customized table with cell renderer so that I can add the delete button on every row in the table
ButtonEditor.java
public class ButtonEditor extends DefaultCellEditor{
protected TableButton btn;
private String lbl;
…
0
votes
0 answers
Ag-Grid cellRenderer click event in Angular
Please find the link below to help me troubleshoot. I am trying to implement click events for a button in the button-renderer component template and the component is used in a customColumn cellRenderer. I can't figure out why it's not showing the…

Renee
- 1
- 3
0
votes
1 answer
ag-grid in a Material Tab
I have an app that has two ag-grids in two tabs using Angular Material tabs. When the user switches between tabs the items in one of the columns get rendered outside of the grid (but inside the tab body). The difference in the column is that it…

HisDivineShadow
- 1,036
- 1
- 12
- 21
0
votes
1 answer
How to set JComboBox in specified cell of JTable
I have a problem. I have been trying to set JComboBox in JTable cell, but only cell with specified parameters (not all cells in column).
I've customized DefaultTableCellRenderer and I'm trying to paste JComboBox to cell in…

CarolusPl
- 639
- 4
- 9
- 18
0
votes
2 answers
enable edit for cell field at row grouping level ag-grid
I have created an ag-grid. where I am grouping the records as row grouping. In that grid, one column is autocompleting typeahead drop-down column I have used the below package to implement…

Abhinandan prasad
- 1,009
- 7
- 13
0
votes
1 answer
BooleanRenderer of Qooxdoo framework
Is it possible to set some styles like width and height to the Boolean cell renderer ??
var BooleanRenderer = new qx.ui.table.cellrenderer.Boolean();
0
votes
1 answer
Is there a way to pass data between 2 cell renderers in ag grid?
I have 2 cell renderers in 2 coulmns of my ag grid. 1st column is action column. 2nd column is a dropdown containing data options.
Dynamically, based on the selection of data from dropdown in 2nd column, i want to change / toggle the action icons in…

me_arc
- 13
- 4
0
votes
0 answers
Why is the height of a JList changed when using a custom cell renderer?
I'm working with a JList which has a custom cell renderer. This is the cell renderer :
public class DefaultOriginalPublisherListRenderer extends DefaultListCellRenderer {
@Override
public Component getListCellRendererComponent(JList list,…

sbrattla
- 5,274
- 3
- 39
- 63
0
votes
1 answer
How can I *predictably* mark changed cells in AG-Grid React?
I have a functional component in React that uses the AG-grid component, that looks roughly like this:
import React, { useRef } from 'react'
import { AgGridReact } from 'ag-grid-react'
export default function FormEditor(props) {
.... code for…

Dycey
- 4,767
- 5
- 47
- 86
0
votes
1 answer
JTable CellRenderer changes foreground color only when focused
I am trying to implement a cellrenderer that changes color depending on the value of an integer. However, the color of the cell changes only when focused on. See picture below.
@Override
public Component getTableCellRendererComponent(JTable table,…

louieansonng
- 343
- 2
- 7
- 17
0
votes
1 answer
ag-Grid does not support .vue component as cellRenderer?
So I have this itemlist.vue file
…

Yogesh Vadekar
- 119
- 2
- 9
0
votes
1 answer
ag-grid cell-renderer component loses its click-ability when data are updated
I'm having a simple angular component that implements an ag-grid like that:

J. Doe
- 619
- 4
- 16
0
votes
1 answer
Flash Datagrid change cell color depending upon updated data
I have a datagrid in my Flash app whose data keeps updating quite frequently.
On every update, I need to change the cell color of only those cells whose data has changed.
That too, if the updated value is less than the older value then the cell…

Vikram Deshmukh
- 12,304
- 4
- 36
- 38
0
votes
1 answer
As3 fl.controls.List adding button to list item
I want to add a SimpleButton to a list item in a list component. I am getting the CellRenderer for the list item I want and using the addChild method to add the simple button. The button appears in the right spot on the list item but it doesn't…

Jordan
- 1,233
- 2
- 12
- 32