I want to make this type of list in my application as shown in image.]
How can I make this type of list and What is this control called any sample available.?
Its called a Jump list control. You can find steps of creation here and here
Related
I want to split a panel in two and open the current file in the new pane? I used to believe that alt+shift+2 would do the job. But it isn't working for me. How can I do it?
You can use multiple key bindings for that. Based on the file containing the default key-bindings:
alt+shift+2: set two column layout and focus on second group (currently empty second column).
ctrl+1: focus on first group.
ctrl+shift+2: move current file to second group (right column).
If you want to do it with a unique key-binding you can see this or this question and others that explain how to use a unique key-binding containing multiple commands.
Note: the given key-bindings work under Linux. Key-bidings on Windows or OS X may be different.
I need to implement functionality similar to 'To' field present in the Windows Phone 8 in build message application.
Whenever user wants to remove any name from 'To' field, he needs to tap on that name then one message pop up will be displayed with remove, open, copy and cancel
User cannot place the cursor in between of the name, once the name is ended with the semicolon
Can anyone suggest me the approach to implement this feature?
Thanks in advance
This is a custom control you would have to write. It is not delivered along the other Windows Phone Controls.
Here is a scetch of how you could achieve this: The custom control is a combination of a TextBlock ("To:" Field) followed by a GridView, Followed by a TextBox (Input Field).
Now at the beginning, the GridView has no entries and is therefore not visible. If the user selects an Email from the type ahead or closes the input by a semicolon (listen to the KeyUp Event of the TextBox), your control logic creates an instance of a datamodel which then holds the ID, Email Address, Name and whatever you would need. This instance is then added to an ObservableCollection which is bound to the GridView. Having the ObservableCollection in place will result in an automatic display of the entry in the GridView. Now clear the TextBox and be prepared for the next entry.
The rest is only layout stuff to have no borders on your TextBox, have the GridView display the Names with Semicolons etc.
Finally react on GridView selections with the Popup to delete or Update its content.
Scenario:
I have an autocomplete country widget. So when:
I start typing a country name in the textbox, the countries that match that query appears. Lets say I type "Co" and it shows me "Colombia" and "Congo" in a list.
Then I select "Congo".
When I select Congo I want to call a Widget/Container/vtl file/whatever that brings me the information I want formatted the way the widget is formatted. Lest say, all the info of the Congo, Location, Population, a brief description, etc.
I tried with the RestAPI and thought of using dotParse()? But I'm new on this I have no idea if this is even possible. I searched in the docs, but didn't find anything similar.
So how can I do this possible?
I have the Widget created, do I only need to call it via the RestApi?
Do I have to create a Container first?
Thanks in advance, for your help.
Thanks i
It sounds like what you want is the RESTful widget API. This is a remote call that will return your widget rendered. See:
http://dotcms.com/docs/latest/WidgetAPI
and
http://dotcms.com/docs/latest/remote-widgets
Pretty new to Infopath here and I can't seem to google this right so i'm going straight to my last option!
I'm building a form in which a Dropdown list needs to change dependant on the value of another dropdown list
So If X = 1, Then Y = 3 etc.
I'm just not aware of the functionality of Infopath and how I can get something like this working.
Thanks.
What you are looking for can be described at the following post:
Auto-populating an Infopath form after selecting a drop down
Essentially you will be using the rules manager to indicate that when a field equals something it will populate another field with data related to it. Think of it as more complex vlookup. Additionally, the verbage you would want to use to google more on the subject would be along the lines of "infopath auto-populate field based on another fields value".
I have a metro application,in which am trying to display table data continuously changing like data changing on tiles in windows 8 start-up screen.Actually here I have an Array contains many items and my table need to display those item-description.For every 5 secs I need to change item-description on my table, what should I do for my scenario?Can anyone give me advice..
Thank you.
I would recommend using databinding to accomplish this task.
Replacing simple arrays with a WinJS.Binding.List (which will notify the ListView about new or removed items) and using either the WinJS.Binding.mixin or WinJS.Binding.as to make the items themselves observable (see http://msdn.microsoft.com/en-us/library/windows/apps/br229801.aspx).
This way you can bind elements in your ListView itemtemplate to properties of your domain model, making the UI update itself as soon as you change something in the model.