how to avoid redbox with cross mark error in intractive grid report for a column oracle apex

118 Views Asked by At

I have a interactive grid, where the columns are readonly according to another column condition which and all is working fine..

Whats issue here for me is : there is an redbox with cross mark is showing when page loads for the column readonly.. how to remove that enter image description here

1

There are 1 best solutions below

5
On

Add this css rule to your page's inline CSS part:

.a-GV-cell.is-error:not(.is-active)::before {
  display: none;
}
.a-GV-cell u-tS is-error{
  color: white !important;
}

This will prevent displaying all of that error icons on that page.