How to insert a sub list page after an existing list page in Windows App Studio? - windows-phone

I am exploring Windows app studio , I want to create an app that will display a list of items by category, and each category must have a subcategory, but it looks like that the template does not have subcategories build in. I have choosed "My Products Catalog" template. How to add a new list page after the existing list page? Should I choose a different template?
The click order must be like this:
1st Category> subcategory> detail page
A screenshot of the windows app studio template:

Windows App studio currently does not support two level navigation within one section. You can setup something similar adding a "Menu" section for each category. In the menu you can add some sub-sections that can map to your sub-categories.

Related

How do I add a custom field to a Sitefinity widget?

I am trying to add a related image field in the news component that is provided by Sitefinity. How do I accomplish this?
Go to: Administration > Module Builder under the tools section of the dropdown. Scroll down to News Items and select it. Once inside it you will want to click on the news items under the modules contains header. From there you can scroll down and select: add a field. Select type related media and you can name it and set certain settings like if it is required.

How to add a menu items for tiles menu in W10

How to add a menu items for tiles menu in W10 using UWP? Preferably through xaml
Feature allowing custom menu items is called jump lists and it works both on live tiles and on the task bar buttons. The best way to learn about it is from the official sample on GitHub and from Docs.
A very simple jumplist could be created like this:
var jumpList = await Windows.UI.StartScreen
.jumpList.LoadCurrentAsync();
jumpList.Items.Clear();
JumpListItem sampleItem = JumpListItem
.CreateWithArguments("item", "Do something");
jumpList.Items.Add(sampleItem);
If you want to display recently opened files (as is the case in the screenshot), you must create a file extension association for your app and store accessed files in the Most recently used list. This can be found here and is managed using the Windows.Storage.AccessCache.StorageApplicationPermissions.MostRecentlyUsedList class.

How to add sub menu in front page for the product category in prestashop 1.6

I want to add sub menu for my category menu for my main menu displayed in the front landing page as shown here
This is my category
When I hover the Category Ticket I must be able to see three submenus
1)Buy ticket (link to the product page which will be always dynamic page)
2)See winners ( a cms page )
3)Check offers ( a cms page)
Category are displayed by adding category
Is there any option to do submenu for category from the prestashop 1.6 back end
You should install blocktopmenu module. Already contained in Prestashop official installation. This module allows you to create submenus. All you'll have to do is to style it with css.
Becouse I cant comment below Florian Lemaitre post I write here, module bloctopmenu didn't have options to create submenu, it is create automaticaly submenu only for category who contains subcategories. If somebody need create some custom submenus containing for example cms page or add home icon he must use third party module.

SharePoint: Programmatically moving pages and subsites on the current navigation menu

Does anyone know how to programmatically move/order the pages and subsites that appear in the Current Navigation when you have the Include subsites and include pages options ticked/enabled?
Background
I have written a class (in c#) which imports content into a new SharePoint site. The newly created subsites and pages all show on the Current Navigation menu as expected, but in the order they were created (I assume). I need to manually sort the pages on the menu so that they appear in the same order as the existing non-SharePoint site.
Issue
The PublishingWeb.Navigation.CurrentNavigationNodes collection does not contain any SPNavigationNode items for the pages and subsites that are automatically displayed on the Current Navigation menu, so I can't use this collection.
I know that to hide a particular page from the menu, you have to update a web property as follows:
web.AllProperties["__CurrentNavigationExcludes"] += page.UniqueId.ToString() + ";";
web.Update();
Is there something similar I can use to order the pages?
Set the Ordering to manual
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.publishing.orderingmethod.aspx
Check out the follow up article on this: http://www.thekickboard.com/archive/2010/09/01/programmatically-setting-navigation-order-in-a-moss-publishing-site.aspx
Is this sort of what you are looking for:
http://www.thekickboard.com/archive/2010/09/01/programmatically-setting-navigation-order-in-a-moss-publishing-site.aspx

Querystring filter for PerformancePoint

Keep in my I am using Dashboard Designer, SharePoint 2010 and PerformancePoint Server 2010.
I have a dashboard homepage showing a KPI for sales, by brand. I added a custom property "View detailed report" on my KPI. When I click on that, I want to be able to go to a second dashboard page featuring 5 scorecards and 2 reports for my sales, by brand. The brand needs to be a filter.
Obviously, what I wanted to do is to tell my second page on which brand to filter by using a querystring parameter, something like ?BrandFilter=[Brand].[X].[Y] ...
But, in Dashboard Designer, you cannot (?) have querystring based parameters. I know I can do it directly in SharePoint (with the corresponding web part), but then when I deploy my dashboard again, I lose custom changes I do to my pages.
I tried to create a custom transform for scorecards that would read the querystring and add PageFilters, but I faced two problems:
1. I cannot access the HttpContext from there (of couse!)
2. That would not do it for reports.
What should I do? Drop Dashboard Designer and work directly in SharePoint? I wish there is a solution with Dashboard Designer!
Thanks!
I found a way to do that. I customized my scorecard generation (using C#) and added a javascript method to my master page to handle all the links that are clicked. When I click on a link in a scorecard, I get the parameter from the current URL and update a filter inside the page with that. I can share more details on request...