pritu patel
Posts: 0
Joined: Tue Jan 21, 2014 6:24 am

problem with panel

please see the screenshot
Image

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

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

problem with panel

Hello!

Could you describe problem in more details?

pritu patel
Posts: 0
Joined: Tue Jan 21, 2014 6:24 am

problem with panel

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
Image

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

Nikita
Posts: 0
Joined: Fri Feb 28, 2014 4:02 pm

problem with panel

Hello,

Please add CSS attribute min-height to the panel, for example:
[name=panel]{
min-height:0px;
}

pritu patel
Posts: 0
Joined: Tue Jan 21, 2014 6:24 am

problem with panel

I used your above Code and after run and scroll panel it will look like follow:
Image

What is the solution for this??

Nikita
Posts: 0
Joined: Fri Feb 28, 2014 4:02 pm

problem with panel

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.

pritu patel
Posts: 0
Joined: Tue Jan 21, 2014 6:24 am

problem with panel

no!!!
It's same as above.
Not working.
Please you can check on my public link.
http://appery.io/app/mobile-frame?src...

pritu patel
Posts: 0
Joined: Tue Jan 21, 2014 6:24 am

problem with panel

Is there any solution for my panel problem???

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

problem with panel

Hi Pritu,

Sorry, not yet. Working on it.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

problem with panel

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

Return to “Issues”