TR Composite Grid and Cell Blinking
I am trying to implement the Cell Blinking feature on my Composite Grid.
My Composite Grid displays realtime data so I am using the example provided under EikonWebUI under Realtime Market Data. However, I want to implement the Cell Blinking feature that exists in the Core Grid. I checked the Core Grid Example and it shows a plugin called "CellBlinking" that is used. So I added the following to my grid:
var cbp = grid.getCoreGrid().loadPlugin("CellBlinking");
var blinker = cbp.getDefaultBlinker();
blinker.setBgColors("green", "red", "white"); // Up, down, no-change colors
blinker.setTextColors("black", "black", "black"); // Up, down, no-change colors
Is there any additional thing I should add? Because this is not working. I can't see any blinking cell although data is always changing.