Page 1 of 1

xbrowse - Tooltip

Posted: Sat Mar 26, 2022 8:29 am
by Otto
Dear Mr. Rao,

It seems to me that bTooltip from xBrowse always selects the highlighted row.
Is there a way to make it take the row your mouse hovers the pointer over?

Best regard,
Otto

Re: xbrowse - Tooltip

Posted: Sat Mar 26, 2022 12:51 pm
by karinha
Mister Otto, look messenger, pls. Regards, saludos.

Re: xbrowse - Tooltip

Posted: Sat Mar 26, 2022 5:40 pm
by nageswaragunupudi
Otto wrote:Dear Mr. Rao,

It seems to me that bTooltip from xBrowse always selects the highlighted row.
Is there a way to make it take the row your mouse hovers the pointer over?

Best regard,
Otto

You are right about oCol:bToolTip.
Please do not use bToolTip.
Instead use oCol:bCellTooltip and you get what exactly you want.

Re: xbrowse - Tooltip

Posted: Sat Mar 26, 2022 6:09 pm
by Otto
Dear Joao, dear Mr. Rao,
Thank you for your help.

Best regards,
Otto



Image

Re: xbrowse - Tooltip

Posted: Sat Mar 26, 2022 6:12 pm
by karinha
Wow. Good look. Regards, saludos.

Re: xbrowse - Tooltip

Posted: Sat Mar 26, 2022 6:18 pm
by Otto
Dear Mr. Rao,
can you please show me how to make this with AEVAL().

Code: Select all | Expand


                        c := ""
            if len( aDirSub ) > 2
            For nIdx2 := 3 to len(aDirSub)
             c+= aDirSub[nIdx2,1] + CRLF
            next
            endif


Best regards,
Otto

Re: xbrowse - Tooltip

Posted: Sat Mar 26, 2022 6:36 pm
by nageswaragunupudi

Code: Select all | Expand

AEval( aDirSub, { |aFile| c += aFile[ 1 ] + CRLF }, 3 )

Re: xbrowse - Tooltip

Posted: Sat Mar 26, 2022 8:10 pm
by Otto
Dear Mr. Rao,

Your source is always like a work of art.
Thank you very much.
It is working fine.

Best regards,
Otto