Page 1 of 5
problem with panel
Posted: Thu Mar 27, 2014 11:04 am
by pritu patel
please see the screenshot
and when i open the panel the height increase.
I want fix panel only why increase their height according to page.
i share public link for that
please click on "BROWSE MORE PROJECTS" and open panel left side up button see the problem with scrolling.
http://appery.io/app/mobile-frame?src...
problem with panel
Posted: Thu Mar 27, 2014 1:01 pm
by Maryna Brodina
Hello!
Could you describe problem in more details?
problem with panel
Posted: Thu Mar 27, 2014 1:33 pm
by pritu patel
when I scroll panel It goes up like in above screenshot.
and also move page also scroll.
I want to scroll only panel.
The problem is that when i scroll panel the height increase like above screen shot.
my panel is like as follow
after scroll is look with very big height as first screen shot
please help somthing.
I also share my project and link public on appery
problem with panel
Posted: Thu Mar 27, 2014 6:38 pm
by Nikita
Hello,
Please add CSS attribute min-height to the panel, for example:
[name=panel]{
min-height:0px;
}
problem with panel
Posted: Fri Mar 28, 2014 10:17 am
by pritu patel
I used your above Code and after run and scroll panel it will look like follow:
What is the solution for this??
problem with panel
Posted: Fri Mar 28, 2014 8:24 pm
by Nikita
Hello,
Most likely, you should add following code on "scroll" event for this page:
Appery("panelName").css("minHeight", $(window).height());
Appery("panelName").css("top", $(window).scrollTop());
where panelName -- panel name.
problem with panel
Posted: Sat Mar 29, 2014 10:04 am
by pritu patel
no!!!
It's same as above.
Not working.
Please you can check on my public link.
http://appery.io/app/mobile-frame?src...
problem with panel
Posted: Mon Mar 31, 2014 7:02 am
by pritu patel
Is there any solution for my panel problem???
problem with panel
Posted: Mon Mar 31, 2014 7:10 am
by Kateryna Grynko
Hi Pritu,
Sorry, not yet. Working on it.
problem with panel
Posted: Mon Mar 31, 2014 10:19 am
by Kateryna Grynko
Pritu,
Run this code on 'upcome' page Load event:pre$(window).unbind('scroll ').bind({
scroll: function() {
Appery("panel").css("minHeight", $(window).height());
Appery("panel").css("top", $(window).scrollTop())
},
});/pre