Mammer
|
| Posted: 05/19/2002, 3:29 PM |
|
This may be a dumb question but I can't seem to find where I can control the style of URL links in grids. I want URL fields in grid forms to be underlined. I know it is right in front of my nose, but I can't find it for the life of me.
Thanks!
|
|
|
 |
Lorenz
|
| Posted: 05/20/2002, 6:50 AM |
|
There aren't dumb questions,only questions ! :)
You have to "combine" HTML and your programming language (I use PHP) in events,
usually "before show".
This is an example to underline "Field1" :
$fldField1 = "<u>".$fldField1."</u>" ;
You can use this example to make all HTML changes you want, including HTML tags
between " "
|
|
|
 |
|