Jump to content

uniScrollbox .. Show Scrollbar only onMouseover


erich.wanker

Recommended Posts

Hi ...

 

i want to show the scrollbar of uniScrollBoy only if mouseover ...

 

in the uniScrollbox are unicontainerpanels, unilabels, Dbgrids and so on ...

it should work with Google Chrome and IE ..

 

 

Has someone a solution ?

 

ThanX for suggestions

 

Erich

Link to comment
Share on other sites

Hi,

 

Can you try this approach for now ?!:

 

UniScrollBox1 -> ClientEvents -> ExtEvents ->

function afterrender(sender, eOpts)
{
    sender.getEl().dom.style["overflow"]="hidden";
}
function mouseover(sender, eOpts)
{
    sender.getEl().dom.style["overflow"]="auto";
}
function mouseout(sender, eOpts)
{
    sender.getEl().dom.style["overflow"]="hidden";
}

Best regards.

  • Upvote 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...