I have a longlistselector in a pivot page and I want to show a menu by clicking on a button and with animation. I divide the view in tow grid I animated the width of the one which contains the menu. The problem is when the longlistselector contain element which the height is heigher than the emulator i can not show the menu (I got an exception)
Related
I am using extjs 4 Desktop
I got a grid with a lot of columns.
I want to hide/unhide via context menu.
The taskbar got a high z-index to stay in front,
i gave the vertical scroller a higher z-index,
but it remains behind the taskbar.
.x-panel .x-layer .x-panel-default .x-menu .x-vertical-scroller .x-panel-vertical-scroller
.x-panel-default-vertical-scroller { z-index:9999999; }
The CSS i took from browser-console, when I change z-index there, it works.
Something is missing!
I have a request from the customer that the menu items position must not change when the page get taller and the scrollbar appears.
If the scrollbar appears, the width of the page get smaller and this is why the centered menu position shifts to the left. How can I preoccupy the scrollbar width so the layout stays the same when it first appears?
To see a live example of this effect
please visit http://getbootstrap.com/,
increase the height of the window that much that the scrollbar disappears and
navigate to an other page using the menu (such as http://getbootstrap.com/customize/)
You will notice that the menu items are shifting a bit to the left. How I may hide this effect?
I'm trying to make the tabs in TabbedViewNavigatorApplication and ViewNavigator line up vertically instead of the original horizontal.
To be able to manipulate the tabBar I've followed this guide: http://devgirl.org/2011/06/14/flex-4-5-mobile-development-tabs-on-top/
I've managed to, via the guide, place the tabBar at the top of the screen.
So now the last thing left to do, how do I align the tabs vertical? I wan't one tab per row, as if they were buttons lying in a VGroup.
Should I use any kind of rotation to turn the tabBar 90 degrees or can I align the Tabs vertically? Should I manipulate the "TabbedViewNavigatorSkin" or in the TabbedViewNavigatorApplication.
How I want it to look: (picture has been Photoshopped for show)
http://imageshack.us/a/img96/2461/1234yl.jpg
Thanks
take the TabbedViewNavigatorSkin and modify it. if you are lucky, its just a matter of providing the layout orientation from horizontal to vertical
Is it possible to place the Tabs on the bottom of a TabNavigator?
Currently, I want to see if Flex4 can create tabs for me positioned on the bottom.
Currently I can use library://ns.tink.ws/flex/mx for his positionedTabNavigator and yet it looks wonky, when I apply rounded corners on the tab, it rounds the wrong end.
There is no TabNavigator in Flex 4 (at least not a Spark component), you have to roll your own out of a TabBar and a ViewStack. So the good news is, you can put the TabBar anywhere you want.
Here's an example: http://devgirl.wordpress.com/2009/11/16/tabbed-navigation-in-flex-4/
I have a list of reports on a page. I currently have 4 large buttons on the right to view, add, edit or delete a button. We've had complaints about people having to scroll back up to click on the buttons once they've selected a report because they have soo many.
Is there a way to have an html object like a div, stay visible on the page when you scroll it? But within the bounds of the container of the grid?
Thanks
Have you tried giving the buttons or their container position:fixed through CSS? Another way could be to use the onscroll Javascript event to move them or their container.