erich.wanker Posted January 16, 2017 Posted January 16, 2017 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 Quote
Sherzod Posted January 16, 2017 Posted January 16, 2017 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. 1 Quote
erich.wanker Posted January 16, 2017 Author Posted January 16, 2017 PERFECT !!! Thank you best regards Erich Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.