Show/hide header panel of a page in Windows phone - windows-phone-8

I want to show/hide header panel of a page according to scrolling up/down of a listbox just like facebook home page.
Please help me for the same.

Related

How to navigate Google App Maker tabs which are out of panel range

New to Google App Maker. I created a Tab Widget with multiple tabs which had exceeded my panels width. It seems that I can't navigate to that tab which is out of sight. Am I missing any layout settings?
How about increasing the width of the 'Tab' component? This will add a horizontal scroll bar in your page but you will be able to visualize the component. You can do so from 'Layout' tab shown in below screen.
If this does not work for you then try redesigning your page and add multiple 'Tab' elements.

How to access the modal popup placed in content page from Master page control?

I am creating a website using ASP.NET and it consists a master page, I have a login link on this master page so that it is available for all the content pages. Now I want the login page to be opened as a modal popup, so I wrote the code for modal popup in login page's aspx file. But I don't know how to access that modal popup placed on login content page from that login link that is present on master page so that the modal can be open at any page whenever i click on the login link??
Can anyone help me?
I have attached the screen shots of master page and login page and highlighted the concerned parts.
Thank you
First image is of login content page
Second image is of Master page
could you not add an on click event to the login link or capture the event with jquery?
It looks like your using bootstrap, so what about adding this bit of JS.
$('#LoginModal').modal('show');
You can then give each input a name or ID on the login modal, the capture it by serialising the login form on button click.

SSRS - adding button to SSRS toolbar

is it possible to add a button to the SSRS toolbar?
Currently on the toolbar you see export, the refresh and the print button. I would like to add a button that will link to a new page.
Is this possible?
There is no method to add your own buttons to the toolbar itself. You can, however, enable the Page Navigation buttons that allow the user to go back/forward or jump to a specific page.

How to host multi-pages in phoneapplicationframe in wp8 like facebook 5 for wp8 app

How to implement a navigation bar like the facebook app for wp8
I want to implement a navigation bar for my wp8 app, it look like the facebook app for windows phone 8, Click on the left menu to slide profile pages ... or Swipe left to show profile page, swipe right to show friend.
My idea is host 3 pages (Profile Page, MainPage, FriendPage) on a phoneapplicationframe, when use click on the profile icon the Profile Page will be visible and the Mainpage will be margined to left ... , It is possible? How can i do it.
Any feedback will help me so much. Please help me, i'm stucked here.
Thanks you.
I've blogged about a possible solution for this, but I have to agree an usercontrol would be a better option!
http://depblog.weblogs.us/2013/07/30/facebook-like-settings-pane-with-gestures-windows-phone/
I believe it was only one single page whose width is more than the screen's width. And the default view is achieved by setting the margin or other property which is for you to findout using trial and error.
First, create a custom control/user control as design same as profile icon pressing profile page.
Then, drag it onto your main page. and set it margin properly how you want.
When you press the profile icon button. Then only you need to show it and collapse it when tapping screen.

facebook javascript sdk UI dialog resetting scroll position

i have a long page, where near the bottom I have a "post on facebook" button. when the user clicks this the FB.UI dialog from the facebook javascript sdk pops-up. This is all working fine except that the page scrolls back to the top of the page where the dialog is showing.
i have the set just under the tag as facebook recommends. I've tried moving this to the part of the page where i need it but the page keeps scrolling back to the top
Any idea how i can get the facbook dialog to show where the current page scroll position is?
You'll want to use the position:fixed; attribute within the element that contains the Facebook dialogue. Check out this link for further information and examples.