1. The Swipe event to slide-Out the navigation, doesn't work on Android?
2. It takes lot of time to render the whole component, to work around it I start a busy Indicator before adding it to the viewport and stop this busy indicator in view.js "initialize" function, still I don't see busy indicator loading it while it renders, What could I be doing wrong here. PS: Busy Indicator works otherwise.
1. The Swipe event to slide-Out the navigation, doesn't work on Android?
I'm unaware that it doesn't work on Android. I've tested the component on various version of Android, but only in the simulator as I don't own any actual Android hardware. I'd love to have someone as an Android tester though.
Originally Posted by urmilsetia
2. It takes lot of time to render the whole component, to work around it I start a busy Indicator before adding it to the viewport and stop this busy indicator in view.js "initialize" function, still I don't see busy indicator loading it while it renders, What could I be doing wrong here. PS: Busy Indicator works otherwise.
Perhaps this is an Android and/or hardware issue? On my 2+ year old iPhone 4 the component loads very quickly and on more recent hardware it is even better.
If you'd like to help debug these issues, I'd welcome a patch.
I'm unaware that it doesn't work on Android. I've tested the component on various version of Android, but only in the simulator as I don't own any actual Android hardware. I'd love to have someone as an Android tester though.
I have the swipe event to slide-out working on an Android phone (v 2.4.3).
Perhaps this is an Android and/or hardware issue? On my 2+ year old iPhone 4 the component loads very quickly and on more recent hardware it is even better.
To render the load view, try delaying the loading view (or the slider) with Ext.util.DelayedTask. Not sure why, but I found that if a second visual component begins to be rendered before the first component (in this case the loading view) is finished being rendered on screen, it will simply not render the first item.
I have the swipe event to slide-out working on an Android phone (v 2.4.3).
Hey, did you do anything special for it?
Originally Posted by in4p
To render the load view, try delaying the loading view (or the slider) with Ext.util.DelayedTask. Not sure why, but I found that if a second visual component begins to be rendered before the first component (in this case the loading view) is finished being rendered on screen, it will simply not render the first item.
Perhaps this is an Android and/or hardware issue? On my 2+ year old iPhone 4 the component loads very quickly and on more recent hardware it is even better.
If you'd like to help debug these issues, I'd welcome a patch.
Are you loading all four panels at once? The component utilizes delayed loading, by default, in an effort to reduce the initial load time as much as possible. Not sure how else to help without more details and/or some code samples.
I haven't looked through all of your changes, but since you have posted this I've added the ability to dock the menu to either the right or left side (thanks largely to a patch submitted by a fellow user). I'm considering adding the ability to have dual menus.
If you're willing to use an early development version, you can check out the newer Ext.ux.slide.View. The navigation aspect has been completely decoupled from this version, which makes it possible to dock any components you want to the left and/or right at the same time.
Thanks, I will have a look.
I have another question:
The orginal Facebook application functions like each "tab" is a NavigationView. What I mean is that you can go in depth with one function, switch to another and back and stille be the same place.
I know that a multiple Containers with layout "card" will do the same. But NavigationView has some nice build in functions as the animations in the toolbar and the autoDetroy of items.
Have someone implemented this or have an idea on have to solve it?
Thanks, I will have a look.
I have another question:
The orginal Facebook application functions like each "tab" is a NavigationView. What I mean is that you can go in depth with one function, switch to another and back and stille be the same place.
I know that a multiple Containers with layout "card" will do the same. But NavigationView has some nice build in functions as the animations in the toolbar and the autoDetroy of items.
Have someone implemented this or have an idea on have to solve it?
You should be able to achieve this by using an Ext.navigation.View for each item in the slidenavigation list. I've implemented this in some of my apps and it works great.