A page as a Panorama item - c#-4.0

I have a single Windows Phone page, let say Details.xaml.
I want to use it as a single view page as well as to reuse that page in different panorama pages.
How can I add that page as an PanoramaItem?
Can you provide some go resource about good practice in implementing Panorama page in Windows Phone 8?
Thank you

You can build a UserControl containing the Visual structure that you wish to present, you can check the microsoft guidelines on Panorama pages.

Related

How to create templates in Kentico 9?

I need to create few templates for E-commerce site. Can anyone guide me as how to create templates in Kentico 9 ? There is an existing site and I need to create five other templates for the same. Am totally new to Kentico.
Please help.
There are many generic templates in Kentico, so you could clone any of them and modify to your needs - this might be easier for you to edit existing one as you'll have an example.
I'd recommend you to take following steps:
Go to Pages application in Kentico administration
Select any page in content tree on the left
go to properties -> template
Save as new template (so you do not screw up exting one) and save your changes
Switch to Design tab - this is where you build/configure you template
On the Design tab there is green line with template name and hamburger menu, where you can choose edit layout - this is where you can implement markup of the page as well as split your page into zones. After you accomplish html for you page save changes and close current dialog.
Now you should be back to Design tab. Here you can add web parts to zones you've specified in the layout. There is huge amount of different web parts (user controls). All they have different purpose and settings, so you should check documentation and figure out which one should be used in your particular case.
Try editable text, editable image, repeater, navigation in order to get an idea how it works.

ibm business card integration for xpages using OpenNTF project Business Card

Using http://www.openntf.org/internal/home.nsf/project.xsp?action=openDocument&name=Business%20Card I can implement this no problem when it is rendered in a static context, for example, hard coded with display name and username.
The problem:
When using this custom control within a repeat control where the repeat is populated from an xml feed. Using XPath we can get the email and display name.
The xpage will render the list with the url based on the display name. However it takes a page refresh for the javascript to rebuild the link to actually do the tiptext and the popup.
Has anybody implemented this in a dynamic context eg a search bar for people in connections?
Thanks
This project is very old. Take a look at the business card control (Java/lib control) in XPagesSBT.nsf in the extlib project (exlibx package).

Create two side by side pages for Windows Phone development

I am using Visual Studio 2012 and can easily create a single page application. I would like to create a second page and have it appear to the right of the main page. Windows Phones will give you a little peek into the next page and you can swipe the screen to switch pages. How can this be done? I think it needs to be more than handling an event, because of the peek/preview we can see on the right edge.
Are you thinking of a panorama control? This sounds like what you're talking about, although another option in most situations is a pivot control.
If you want to see a a part of the next page you need to use Panorama control
You can use Panorama Control in WP8 SDK for this. Start with the Windows Phone Panorama App template in Create New Project in VS: How to create a Panorama Windows Phone App.
The PIVOT CONTROL is more manageable than the PANORAMA.
Panorama cannot navigate programmatically from one page to another, while the pivot control allows you that! [see here for implementation]
See pivot control example and compare with panorama example if you will.

Are there any possible ways to implement typeahead or name picker capability in an XPages mobile app?

I've an XPages Web app and want to mobilize it. However, I'm encountering difficulty in finding a suitable control to let users for selecting a name from Domino Directory.
In my Web app, I use the built-in typeahead and xe:namePicker for that purpose. However, these two items would not work nicely on a mobile page. Are there any alternative solutions?
The standard typeahead will work if you include the dojo tundra.css in your mobile app, this will be modified to be included in the future.
The name picker doesn't work as the type of control used doesn't support mobile devices well, currenty there is no in built solution, An idea that comes to mind is click a button and open a page to a dataview / repeat control that has all the names in it and a textbox to filter the list.

Best practice in building outlook layout in asp.NET & telerik radpanelbar as a page arch?

I am working on enterprise apps, I am using telerik controls to make life easier ;)
The layout of my application on the left radpanelbar used for the navigation menu, on the right side is the content.
I want to make this navigation menu to navigate to a usercontrol (.ascx file) instead of a page (.aspx file)
The navigation control is in the master page.
I have multiple reasons to make this kind of navigation:
I have many user controls, and do not want to make pages (.aspx) as many user controls as I have.
Which is the most important I want to make this happen on the fly with out post pack (AJAX).
So please could any one tell about the best practice to do it.
One possible solution might be to load the navigation user control programmatically via AJAX when the user clicks a panelbar item. Still positioning this user control on the master page and loading it from the content page is quite odd to me and I personally do not approve it as a good architectural decision.

Resources