Jump to content

Recommended Posts

Posted

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.

Posted

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.

  • 2 months later...

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...