Question
TIP: Remove underline from HTML CFGRIDCOLUMN HREF
It took me almost all of yesterday to find the solution on
how the remove the underline in HTML CFGRID / CFGRIDCOLUMN with an
HREF
Before the CFGRID definition add this new style for each column where you don't want the underline appearing
<STYLE>
<!--
.x-grid-col-3 {text-decoration:none !important;}
.x-grid-col-4 {text-decoration:none !important;}
-->
</STYLE>
Before the CFGRID definition add this new style for each column where you don't want the underline appearing
<STYLE>
<!--
.x-grid-col-3 {text-decoration:none !important;}
.x-grid-col-4 {text-decoration:none !important;}
-->
</STYLE>
