Page 3 of 3

How can I use an input on the page while a popup is open?

Posted: Sat Jun 06, 2015 2:03 pm
by Ellen Schlechter

I tried putting the button group in a grid with an assigned size. See screen shot below.
Image
Then I tried applying this code on page load but with it on page load, it would let me even go to that page so I put it on page show.

codeApperyio('mobilegrid_107').css('overflow' == 'scroll'); /code

The problem came came it because when I tested it, the grid size just expanded to how ever big it needed to be to hold all of the buttons instead of limiting the size and scrolling to see more results.


How can I use an input on the page while a popup is open?

Posted: Mon Jun 08, 2015 7:49 am
by Serhii Kulibaba

Elen, you can use "auto" value for width and height properties


How can I use an input on the page while a popup is open?

Posted: Mon Jun 08, 2015 1:22 pm
by Ellen Schlechter

I don't want an auto height though. I have a set size for it but it son't stay.


How can I use an input on the page while a popup is open?

Posted: Tue Jun 09, 2015 6:55 am
by Serhii Kulibaba

I am sorry, not sure I understand you correctly. Please specify your question. Do you need static-size grid which has cell with scroll?


How can I use an input on the page while a popup is open?

Posted: Tue Jun 09, 2015 7:18 pm
by Ellen Schlechter

I want the grid to be a specific size and when doesn't fit, I can scroll to see. I have tried setting the grid to a specific size already but it expands instead of remaining the assigned size.


How can I use an input on the page while a popup is open?

Posted: Wed Jun 10, 2015 6:47 am
by Serhii Kulibaba

Please use this CSS for grid "mobilegridName":

pre[data-wrapper-for="mobilegridName"]{
overflow-y:auto;
height:100px;
}/pre


How can I use an input on the page while a popup is open?

Posted: Wed Jun 10, 2015 9:45 pm
by Ellen Schlechter

Perfect! Thanks!