Screen scroll is blocked

0

I have a problem that I do not know how to solve. I have made an App with , , , and

asked by Anuskaoo 14.12.2016 в 15:14
source

1 answer

1

This happens because you apparently add fields to the form after the page loads completely. Therefore you must do resize

You can check like this:

height = $(window).height();

When you add data to your already loaded form

if($(window).height() != height){

}

Here check if the current height of your screen is different from the previous one, if this is the case you should update the height

Another way I can think of is to add this css to your class containing the form.

height:100%; overflow:auto;
    
answered by 14.12.2016 в 15:26