skafy Posted December 17, 2015 Posted December 17, 2015 How can I disable horizontally scrollable panel? Quote
Administrators Farshad Mohajeri Posted December 17, 2015 Administrators Posted December 17, 2015 This may help: TUniScrollBox Quote
Sherzod Posted December 17, 2015 Posted December 17, 2015 Hi, Can you clarify the issue ?! Best regards. Quote
skafy Posted December 17, 2015 Author Posted December 17, 2015 Hi, Can you clarify the issue ?! Best regards. Sorry. I've edit the question. I would like to disable/hide horizontal slider on TUniScrollBox or TUniPanel. Quote
Sherzod Posted December 18, 2015 Posted December 18, 2015 Hi, For now, you can try this: UniScrollBox1 -> ClientEvents -> ExtEvents ... afterrender fn: function afterrender(sender, eOpts) { sender.getEl().setStyle('overflow-x', 'hidden') } Or UniScrollBox1 -> ClientEvents -> UniEvents ... beforeinit fn: function beforeInit(sender, config) { config.autoScroll = 'auto'; sender.overflowX = 'hidden' } * Maybe, in the next versions this feature will be added Best regards. Quote
Sistema Fenix Posted March 17, 2016 Posted March 17, 2016 Hi Delphi, There is already this feature? Best regards 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.