cancel
Showing results for 
Search instead for 
Did you mean: 

MultiInput with multilinemode enabled is collapsing on clicking of scroll

aswani_sanjay
Explorer
0 Kudos

Hi Experts,

I am using a multiinput control inside a dialog in my application. The issue which I am facing is that whenever I have huge no of tokens in my control and I expanded them to see all tokens at once and whenever I am clicking on scroll or whenever I am clicking inside the input the control is collapsing.

The issue is only occuring in Chrome. In IE the control is working fine.

Please find below the URL:

https://jsfiddle.net/ru4ht4sL/

Steps to reproduce the problem:

  1. Click on Button
  2. Click on More in MultiInput.
  3. Click on Scroll or anywhere else in input.

Thanks

Sanjay

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member227918
Active Contributor
0 Kudos

I guess the issue with dialog layout, the css of dialog and input is messed up,

you can try below css to disable dialog scroll and test

section#dialog-cont { overflow: hidden !important; }

or

remove contentWidth and hight property from dialog, and wrap input into some other control like panel etc and apply width and height to it.