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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...