I a browse I have a Char Field. It look like : "Iphone<br>64mb<br>green<br>touchscreen" enz..
It is used for a import in a php shopcart, where the <BR> will take care that each item is on a new line for viewing.
I would like tho see also from the browse and his Tooltip the Items on each new line
Iphone
64 mb
Green
Touchscreen
I tried to change the <BR> what is HTML inside the below function to CRLF , but with no succes.
Maybe a other idea ?
This code shows the tooltip :
- Code: Select all Expand view
from browse :
oBrw:bToolTips := ;
{ | oBrw,r,c,f,oMouseCol,nMouseRow| MyColToolTip( oBrw,r,c,f,oMouseCol,nMouseRow ) }
Function MyColToolTip( oBrw, r, c, f, oMouseCol, nMouseRow )
local uBm, uVal
if nMouseRow != oBrw:nRowSel
uBm := oBrw:BookMark
Eval( oBrw:bSkip, nMouseRow - oBrw:nRowSel )
uVal := oMouseCol:Value
oBrw:BookMark := uBm
else
uVal := oMouseCol:Value
endif
return cValToChar( uVal )