Hello friends,
I have an Interactive grid form which i want to have conditional formatting. Basically in the grid i have a column (COL_A) with shared component LOV and i want to have a cell background change (COL_B) based on the selected value of COL_A.
so i made a dynamic action under COL_A
WHEN
EVENT: Selection Change
SELECTION TYPE: columns
REGION: IG_REGION
COLUMN: COL_A
CLIENT-SIDE CONDITION
TYPE: ITEM/COLUMN = VALUE
COMPONENT TYPE = COLUMN
COLUMN = COL_A
VALUE = 3
in True Action i have the following
IDENTIFICATION
Action: SetStyle
SETTINGS
Style Name: background-color
Value: yellow
I made a similar thing for the False action
Now here are my problems
- The dynamic action fires up when ever i add a row to the grid and automatically false action being executed without me selecting or even clicking on COL_A
- The dynamic action fires right away when i click on existing row without even me interacting with any of the items in that row
- The background color only appear when i click on COL_B and as soon the cell looses focus it disappears and goes back to the original white background.
- Also i am not sure if the styles applies only to that cell or to the whole column.
thanks