Questions tagged [cellrenderer]

145 questions
1
vote
1 answer

How to prevent onRowClicked when using a cellRenderer in AgGridReact

When using your own cell renderer for e.g. an action column - with links or buttons in it -, AgGridReact still triggers a onRowClicked event when you click on one of the links or buttons. event.stopPropagation and event.preventDefault do not…
Toni Bünter
  • 93
  • 1
  • 6
1
vote
0 answers

React-Native-FlatList: onEndReached not working with customed CellRendererComponent

Description One of the FlatList's well-known bugs is probably about zIndex. I'm working on drag and drop cards in FlatList, but zIndex doesn't work as expected. So I customize CellRenderComponent as workaround(see this), but when I use…
1
vote
1 answer

GTK3 custom cell renderer, that outputs widgets

I'm looking for a way to output random widgets in the TreeView cells. The lifecycle of these widgets is 100% controlled by me manually outside of the parent TreeView. Don't care about keyboard navigation and accessibility (so far). What I got by…
snuk182
  • 1,022
  • 1
  • 12
  • 28
1
vote
0 answers

cellRenderer single cell height

How do you change the height of a single cell. override protected function drawLayout():void { textField.width = this.width; height = 64; textField.height = height; textField.setTextFormat(tf); super.drawLayout(); } How do I…
Daniel
  • 34,125
  • 17
  • 102
  • 150
1
vote
0 answers

How to inline edit react virtualized table cells?

I'm searching the web for a few days to find a way to do this. Is there a way to inline edit react-virtualized table cells? Like editing a cell with value in excel. I tried cell rendering, but it won't let the user edit the cell.
1
vote
0 answers

Is there a way in Ag-Grid to have a select-drop-down cell editor also have a custom cell rendered button fire an event?

I am using Angular 5 with Ag-Grid and want a column's cells to have a rich drop down select (I have achieved this), but also want an option to add a new item to this list. I was trying to achieve this by using a custom renderer to render a button…
1
vote
1 answer

How do I return component to ag-grid cellRenderer

Product id grid column needs to link to product details page. I am using ag-grid cellRenderer option to return component which will go to product details page. cellRenderer: (params) => { return ( {params.value}); } My routing is: I…
Shinta
  • 35
  • 5
1
vote
1 answer

Applied aggFunc with cellrender and aggFunc is not showing in parent row

Used aggFunc "first" with cellRenderer for the column, the first cell in children row didn't show up in the parent, but when you hover over the parent cell and do copy on the empty parent cell, then paste in on a notepad, the value of the first…
1
vote
2 answers

Access gtk.TreeIter inside render() Function of gtk.CellRenderer -- pygtk

I am trying to code the following: Two Columns. One contains a itemId, the other one contains a typeId. I want to render the itemId only when the typeId equals a specific value. class IDRenderer(gtk.CellRendererText): def __init__(self): …
grindhold
  • 31
  • 4
1
vote
1 answer

ag grid infinite row model - Update cellRenderer

I'm using Infinite Row Model on Ag grid. And I need to be able to update the cellRenderer manually when changing the data on remote. I am currently using the purgeInfiniteCache () method. But it has a very noticeable blink. Would there be any way to…
Jorge
  • 77
  • 4
1
vote
0 answers

Ag-Grid Angular Cell Renderer inject CellRendererService

I want to implement a CellRenderer that can show/hide the cell it is attached to (let's call it ShowHideCellRenderer). I want this cell renderer to take a cell renderer (innerCellRenderer) as a parameter which defines how the cell is rendered if it…
Dennis
  • 1,027
  • 1
  • 14
  • 30
1
vote
0 answers

Treeview drag and drop with a gtk CellRenderer in python

When extending a gtk cell renderer such as gtk.CellRendererPixbuf in python, what needs to be done to make sure drag and drop works? Drag and drop works for gtk.CellRendererText but not for my custom CellRender where I have extended…
Monkey Code
  • 592
  • 6
  • 20
1
vote
1 answer

Python Gtk.CellRendererText() color

This treeview has 5 columns with a list of usb devices details , it's showing Device name , Model , Serial number and status , it's all showing fine on the list , what I am trying to achieve is colour code the "status" column only ,if the "status"…
1
vote
1 answer

Rendering a component into an ExtJS grid

I want to render a split button into a column in a grid to perform actions on each row. I can't seem to figure out how to build a custom cell renderer that will accomplish this. Each cell will have the exact same split button, but will act on the id…
Josiah Kiehl
  • 3,593
  • 3
  • 26
  • 28
1
vote
2 answers

DefaultTableCellRenderer not working

I am trying to change the color of the cells of the third row of my JTable if they have a value. I read that a good way to do this is using a table cell renderer. However, it just seems not to be doing anything! Here there is my RENDERER…