List and selecting items in it ?

I use List (element in building GUI). In emulators it works nicely and I have possibility to select one item from the list (I didn't code anything about selecting it) it was automatically added to menu. This is great.
When running the same app in actual device (Nokia 7210), the "select" is not possible / provided by the phone...Theere is no such element at all. So I actually can't select an item out of list.
In nokia 7650 this doesn�t occur.
My mistake, need to program ? .. how to proceed ?
P

Funny that mine doesn't work and I have the same firmware version...
My situation is that I have a List, with items that are ment to be selected.. I need to have commands generally concerning the whole application and commands that are available after user have selected one item from the list.
This is now done so that I have one List (holding those selectable items...), select button then leads to another list, where I have list of actions available to selected item.
The previous list also has Commands appended to it.
These commands are always available, but in phone the List Select button is gone, and accesing that other list (with detailed actions concerning only the selected item) is then impossible.

Similar Messages

  • List and selected item

    Hello,
    I’m having difficulty to understand list items,
    Here is what I need to do, I list item loaded from a table, all looks good
    Now when someone select the item from the list, I would like to put a code
    Behind button (mouse-click) and show selected item in text box (TEXT ITEM)
    Please don’t ask me to help file, I spent over two hours with no chance, looks help file
    Needs help.
    Thanks for any help in advance

    your question isn't clear at all.
    first: When you change the value of a listitem you can use the WHEN-LIST-CHANGED-trigger to do something.
    if you want to transfer the value of a list-item into another item, then you can write this code in the trigger WHEN-LIST-CHANGED
    BEGIN
      :my_block.my_item := my_block.my_listitem;
    END;or do you need something different?

  • How can i show the first item in the list as selected item

    Aslam o Alikum (Hi)
    Dear All
    How can i show the first item in the list as selected item when user click on the list. Right now when user click the list the list shows the last item in the list as selected or highlighted. Furthermore if the list item have large no of value and a scroll bar along with it then the list scroll to last item when user click it with mouse. I want that when user click the list item with mouse list should show the first item as highlighted.
    Take Care
    Allah Hafiz

    Hi!
    You can set list "initial value" using When-Create-Record trigger.
    I.g.
    :<Block_name>.<list_item_name> := Get_List_Element_Value('<Block_name>.<list_item_name>', 1);

  • How to make new scop of list and selection parameter in ME2L or ME2M

    Hi,
      As there are many reports avaliable ,  in ME2L and ME2M  there is scope of list and selection parameter on the selection screen,  i want to know how we can create new scope of list and new selection parameter.
    regards,
    zafar

    IMG ---> Material Management ---> Purchasing ---> Reporting ---> Maintain Purchasing Lists ---> Scope of List ---> Define Scope of List

  • Lists, groups and selected item

    I'm trying to learn how to work with lists and I'm just not getting it. I've been working on this for days now to no avail.
    My first problem is eachItem is returning only last entry of groupsList instead of the selected specifiedGroup. Then what I would like to do which I'm not too keen on either is, take that selection and match it to one of the choice groups which would contain files or something that the user has preselected previously. Thanks so much! I'm learning a lot of Applescript lately but these lists get the best of me still as I don't fully understand how they work yet. Hoping this will clear my head on things.
    property groupsList : {"List1", "List2", "List3", "List4", "List5"}
    property specifiedGroup : {}
    property choiceOne : {}
    property choiceTwo : {}
    property choiceThree : {}
    property choiceFour : {}
    property choiceFive : {}
    choose from list groupsList
    copy result to specifiedGroup
    log specifiedGroup
    set results to (every item of groupsList)
    repeat with eachItem in results
              if eachItem = specifiedGroup then
                        exit repeat
              end if
    end repeat
    log eachItem

    AppleScript doesn't support variable variables, so you can't refer to variable names like that (at least not in regular AppleScript).  Using a record isn't that much better, because you can't use variables to refer to property keys, either. There are a couple of cheats that use run script, but usually those are more of a pain that they are worth.
    One way that is similar to what you are thinking about would be to create a list of lists, then use your choice to index into that list, for example:
    property groupsList : {"List1", "List2", "List3", "List4", "List5"}
    property choiceOne : {"choiceOne", "this is list 1"}
    property choiceTwo : {"choiceTwo", "this is list 2"}
    property choiceThree : {"choiceThree", "this is list 3"}
    property choiceFour : {"choiceFour", "this is list 4"}
    property choiceFive : {"choiceFive", "this is list 5"}
    set listOfLists to {choiceOne, choiceTwo, choiceThree, choiceFour, choiceFive}
    set theChoice to (choose from list groupsList) as text
    if theChoice is "false" then error number -128 -- cancel
    set specifiedGroup to missing value
    repeat with i from 1 to (count groupsList)
      if item i of groupsList = theChoice then
        set specifiedGroup to item i of listOfLists
        exit repeat
      end if
    end repeat
    log specifiedGroup

  • Powershell script to count number of list and library items in site collection

    We are identifying large lists in our 2010 SP environment and I'm attempting to write code to output the total number of list items in a site collection.   I'm using the code below but it only displays column data for title and url. 
    What do I need to add so it can count the number of items in each sharepoint list and library? 
    Get-SPSite -WebApplication http://sharepoint -Limit All |
       Select -ExpandProperty AllWebs |
       Select -ExpandProperty Lists |
       Select ParentWebUrl, Title
    I'm referencing
    http://sharepointpromag.com/sharepoint/windows-powershell-scripts-sharepoint-info-files-pagesweb-parts

    Please find belwo script, it will iterarte through all the folder/Subfoder to get the item counts from all list and library, you can modify this script to run this at site collection scope:
    Note: save the script in .ps1 file and execute the script as described below to get log file, it will save the log file out.txt in seleted directory:
    e.g.PS D:\PowershellScripts> .\ListItemCount.ps1 > out.txt
    $SPWebApp = Get-SPWebApplication "http://weburl.com/"
    foreach ($SPSite in $SPWebApp.Sites)
    if ($SPSite -ne $null)
    foreach ($SPWeb in $SPSite.AllWebs)
    foreach ($list in $SPWeb.Lists)
    $ListURL = $SPWeb.url + "/" + $list.RootFolder.Url
    Write-Output $ListURL
    [Microsoft.SharePoint.SPQuery]$query = New-Object Microsoft.SharePoint.SPQuery
    #$query.Folder = fldr;
    #Recursive Scope....
    $query.ViewAttributes = "Scope='Recursive'"
    $allitems = $list.GetItems($query);
    $filecount = $allitems.Count;
    Write-Output " No of item: " $filecount
    if ($SPWeb -ne $null)
    $SPWeb.Dispose()
    if ($SPSite -ne $null)
    $SPSite.Dispose()
    You can update the code to get any specific list type item count, using if($list.BaseType -eq "DocumentLibrary") condition:
    if($list.BaseType -eq "DocumentLibrary")
    $ListURL = $SPWeb.url + "/" + $list.RootFolder.Url
    Write-Output $ListURL
    [Microsoft.SharePoint.SPQuery]$query = New-Object Microsoft.SharePoint.SPQuery
    #$query.Folder = fldr;
    #Recursive Scope....
    $query.ViewAttributes = "Scope='Recursive'"
    $allitems = $list.GetItems($query);
    $filecount = $allitems.Count;
    Write-Output " No of item: " $filecount
    if ($SPWeb -ne $null)
    $SPWeb.Dispose()
    If my contribution helps you, please click Mark As Answer on that post and Vote as Helpful
    Thanks, ShankarSingh

  • Program with list and select button

    Hi,
    is there a program module that displays a list and when user selects an item and clicks on some button the program returnes selected item.
    I just want to use that kind of program as a template.
    Thank you.

    Hi,
    Try this program BCALV_GRID_02
    Cheers.
    ...Reward if useful

  • Using Dreamweaver CC 2014.1.1, when I select a set of paragraphs to turn into a Definition List, and select Format - Lists - Definition Lists, I get the dl tags but do not get the dt or dd tags?

    I have used this before in earlier versions of DW and it worked fin.  I tried tonight with CC 2014.1.1 in either design view or in codeview with the same results.  I would select the text from the starting <p> tag to the ending </p> tag, and then in the menu choose Format - List - Definition List and only get the <dl> tags.  Anyone else experience this?
    Thanks!

    That's how it works in CS6, too.  And it is not just for definition lists.  That is the expected outcome no matter which list type you use.   DW doesn't know where the DTs and DDs begin and end because you've highlighted an entire paragraph and asked DW to format it as a DL.
    I typically code my own Definition Lists.  It's faster.
    Nancy O.

  • How can I select more than one bookmark at a time so that I can then open multiple bookmarks -- without the aggravation of going back to the list and selecting and opening each one.

    From my dozens of bookmarks, I often would like to open 5 or 6 of them at once -- perhaps a couple of weather reports, a couple of radio stations, a couple of other websites. But I see no way of doing this without laboriously finding a bookmark, selecting it, opening the website, then returning to the bookmarks, finding the second bookmark, selecting it, opening the website, and on and on. Surely there's a way for me to select multiple unrelated bookmarks and open them at the same time. Thanks much for your help. Don

    ''Actually there is a picture and better explanation in the corresponding History article''
    * ''http://kb.mozillazine.org/Viewing_the_browsing_history_-_Firefox ''
    Look where this picture is embedded in the article topic [http://kb.mozillazine.org/Viewing_the_browsing_history_-_Firefox#Selecting_history_items Selecting history items]
    * http://kb.mozillazine.org/images/Fx3_history_sidebar_selections2.png
    Selecting, viewing, and searching the sidebars and library lists is explained in both articles previously mentioned.
    Multiple selection is something built-in to a lot of applications and into all browsers, and yes you guessed correctly the favicon it the thing to the left of the bookmark and that is what is is called in all browsers. And if you look at selection you will find that it matches what you asked for, especially if you were to do a search from the search bar on the bookmark or history sidebar. But there is also no problem opening up a single bookmark or history item into a new tab, with either Ctrl+click or Ctrl+Shift+click in the area to the right of the favicon either.
    However I would suggest making a change to your configuration options so the the same keyboard shortcut is used from a link and from your bookmarks. See those keyboard shortcuts in the following along with the footnotes just below the table for them in
    * http://www.mvps.org/dmcritchie/firefox/keyboard.htm

  • Help listing and selecting xml object

    Hi there
    I am having problems with "see the forrest" with this code. I am trying to sort a my xml elements by listing them , sorting them and moving them.
    My problem is :
    How do i make a list of all my elements in the "story" like a collection of indesign elements ?
    How do i select the element and move it after "myXMLOld" ?
    And if this is a "BAD" way to to this i will be interested to learn a better way ?
    Regards
    T'
    var myDocument = app.documents.item(0);
        var myXML = myDocument.xmlElements.itemByName("Root").xmlElements.itemByName("Story")
          var myXmlList = new Array;
        var bb = myXML.xmlElements.length;
    for(var myCounter = 0; myCounter < bb; myCounter++){
         var  myXmlElement= myXML.xmlElements.item(myCounter)
         var myXM_id = myXML.xmlElements.item(myCounter).id;
         var myXML_con = myXML.xmlElements.item(myCounter).contents;
         myXmlList[myCounter] = [[myXML_con , myXM_id]];
    var ok = myXmlList;
    myXmlList.sort ()
    var myXMLOld=myXmlList[0][0][1];
      var myXMLElementA = myXML.xmlElements.itemByID(myXmlList[0][0][1]);
    myXMLElementA.move(LocationOptions.atBeginning);
    for(var myCounter = 1; myCounter < bb; myCounter++){
    var test = myXmlList[myCounter][0][1];
    var myXMLElementA = myXML.xmlElements.itemByID(test);
         myXMLElementA.move(LocationOptions.after, myXML.xmlElements.xmlElements.itemByID(myXMLOld));
          var myXMLOld=myXmlList[myCounter][0][1];
    XML file:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Root>
    <Story>
    <Vidlex>Alger: En stor gruppe </Vidlex>
    <Vidlex>Basalt: Sort finkornet /Vidlex>
    <Vidlex>Cyanobakterier: Bakterier, </Vidlex>
    <Vidlex>Dna: (Deoxyribonukleinsyre). Organisk molekyle, </Vidlex>
    <Vidlex>Etolog: Person, der </Vidlex>
    </Story>
    </Root>

    Unfortunately in my real scenario I don't know what the
    element will be called. It could be in <foo> or <bar>
    etc, so I need to be able to use a variable (in which the element
    name is set beforehand). With "::" I can't use a variable, so
    textXML.ns::findParis looks for a "findParis" element and not "b".
    That's why I'm trying to use testXML.child(findParis) because
    I can use a variable. I just can't figure out how to make it
    incorporate the namespace as well.

  • How to internationalize h:selectOneMenu and select items.

    I'm trying to have a web app in different languages which is working fine.
    my question is, here I post an example of selectOnemenu
                   <h:selectOneMenu value="#{user.gender}">
                   <f:selectItem itemValue="1" itemLabel="#{dropdown.male}"/>
                   <f:selectItem itemValue="2" itemLabel="#{dropdown.female}"/>
                   </h:selectOneMenu>
    where it said "dropdown.male" this valude is coming from properties file from the application rather than database or list. I did this because the user can change the language by selecting the appropriate properties file
    ex: dropdown_de.properties for Germen Language or dropdown_it.properties for italian.
    if the user select female from the dropdown, when I go in editing mode, I want the the first one or the selected one to be first. how I can do that? if it was array or list i could have done it but from the properties file its kind of difficult.
    I could not find this solution from books or online. I hope some one has the answer for me.
    code example is greatly welcome.
    Thank you in advance.

    harddisk wrote:
    if the user select female from the dropdown, when I go in editing mode, I want the the first one or the selected one to be first. how I can do that? if it was array or list i could have done it but from the properties file its kind of difficult.
    I could not find this solution from books or online. I hope some one has the answer for me.I don't clearly understand the problem, but I assume that you want to preselect an item? If so, then you should be presetting the value behind #{user.gender} to 2.

  • Flashing screen and selected items flicker

    the Screen flashes often and every selectable link flashes.

    Not tried another cable as the it is only the wallpaper that is flashing so not sure how a dodgy cable would cause this effect. The top menu bar doesn't flash (although the image behind does) and currently, mail is open but is not flashing, it just seems to be the background wallpaper.
    Again, there is no dock at the bottom.
    I am in the UK so unfortunately, Apple support are out-of-hours at the moment (21:50 uk time).
    Cheers.

  • Second list of items from selected item in first list

    Hi all,
    I have 2 dropdown lists in my jsp page. i am retrieving data from database for my first list box. the second list box data should be displayed when user select an item from the first list. the selected item from first list is necessary to get another list of items in second list. i dont want to use any buttons or submits. i want to redirect the data to the same page to get another list when user click one option from first list. Thanks in advance for any suggestion.

    use ajax or store the data in javascript array

  • HT1766 how can i view my backed up items, including apps, and select specific items to restore back to my iPhone? i lost a lot of items when upgrading to iOS 6.0.1. thanks for any help.

    I have just updated an iPhone 4 to iOS 6.0.1 and lost a lot of the Apps that were on the phone. How do I get them back? Can I view my backed up items and select items to restore?

    You can restore the backup to get the apps back from the last backup
    Or you can re install them manually

  • How to Loop through another list and update a column with SharePoint Designer 2013 Workflow

    Hi,
    I am trying to get my head around the new 2013 Workflow Engine and SharePoint Designer 2013 Workflow Text-Based Designer.
    I have two lists.
    List A has 2 columns: Title, Completed (Yes/No)
    List B has 3 columns: Title, LookupListATitle, Completed (Yes/No)
    All the 2013 Workflow components have been installed and configured and I am selecting the 2013 Workflow option in SPD
    I am trying to set off a 2013 Workflow when an item in List A is edited to Loop through List B and select items where the LookupListATitle column's value is equal to the Title value of the current item, and set the value of the Completed column for those
    items in ListB to "Yes".
    I have the Workflow configured like this:
    Stage: Stage 1
    IF Current Item:Completed equals Yes
    Loop: 1
    The contents of this loop will run repeatedly while: ListB:LookupListATitle equals Current Item: Title
    Update item in ListB. 
    (The dialog options for the update item action as follows:
    List: ListB
    Field: Completed, Value: Yes
    In the Find the List Item section
    Field: LookupListATitle
    Value: Current Item: Title)
    Transition to stage
    Go to End of Workflow
    When I update an item in ListA and set its Completed column to Yes, I would expect the Workflow to find all the items in List B where the Lookup column is equal to ListA's Title (there are 2) and update their Completed column to Yes. But it doesn't work.
    When I look at the Workflow Status it says the Internal Status is "Canceled" and the information pop up has the following alien language (and may be truncated):
    RequestorId: 95f03b62-8956-ac14-c5cf-dc98c89c589c. Details: System.ArgumentException: Invalid JSON primitive: Item001. Parameter name: value at Microsoft.Workflow.Common.Json.JXmlToJsonValueConverter.ConvertStringToJsonNumber(String value) at Microsoft.Workflow.Common.Json.JXmlToJsonValueConverter.ReadPrimitive(String
    type, XmlDictionaryReader jsonReader) at Microsoft.Workflow.Common.Json.JXmlToJsonValueConverter.JXMLToJsonValue(XmlDictionaryReader jsonReader) at Microsoft.Workflow.Common.Json.JXmlToJsonValueConverter.JXMLToJsonValue(Stream jsonStream, Byte[] jsonBytes)
    at Microsoft.Activities.DynamicValue.ParseJson(String json) at System.Activities.CodeActivity`1.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor
    executor, BookmarkManager bookmarkManager, Location resultLocation)
    Unfortunately I don't have access to the server, logs etc.
    I would love to find some tutorials, or any books on SharePoint Designer 2013 in general and Workflows in particular but my searches haven't turned up much so far apart from a pre-release Beginning SharePoint Workflows which is in its very early stages and
    not much help yet.
    Can anyone give me some guidance on how to set up While Loops to iterate through a related list using SharePoint Designer 2013?
    Mark

    Hi,
    I understand that you wanted to update the items in the other list (Participants) where the Course equals the Current Item.
    You need to use “Call HTTP Web Service" action and “Build Dictionary" action to get the Maxid and then loop Participants to update the items.
    You can follow the steps as below to achieve what you want:
    Create a custom list named Courses, add columns: Title(Single line of text), Course ID(Single line of text), Course Finalised (Yes/No).
    Create a custom list named Participants, add columns: Title(Single line of text), Course(Lookup), CourseFinalised (Yes/No).
    Create workflow associated to Courses, start the workflow automatically when an item is created or changed.
    Add conditions and actions:
    The HTTP URL is set to
    https://sitename/_api/web/lists/GetByTitle('listname')/items?$orderby=Id%20desc and the HTTP method is set to “GET”. Then the list will be order by Id and desc.
    Then if Course Finalised is equal to Yes, the CourseFinalised  of the associated items in Participants will be updated to Yes.
    More information:
    http://sergeluca.wordpress.com/2013/04/09/calling-the-sharepoint-2013-rest-api-from-a-sharepoint-designer-workflow/
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • A space in xml-document is stored in database as New line feed instead of n

    Hello, I have got the following problem: An xml-document is inserted by an xsql servlet into an object view. First this document is translated by an xsl file. Then an instead of trigger inserts the values into the right tables. When a space is presen

  • Strange multiple display problem

    I have two displays hooked up to my powermac G4 733 (still works great). recently after I launched Avid Xpress Pro (I'm sure it's the cause), one of the display's stopped working. It's not getting signal from the computer. The strange part is that in

  • Windows 7 causes missing letters.

    I have Windows XP. I created a document in Word 7 and created a pdf with Adobe Acrobate Pro 9. I have discovered that when people with Windows 7 try to print the document, the document is missing the letters "t," "i" and all double letters. The docum

  • How to Filter list/library view pages from Search Results?

    Hi All, Currently my search configuration is searching everything on a site collection. I have created custom scope for that. But I would like to remove the search results for list/library views. The search should only show the documents, pages (but

  • How to minimize iPhoto 8?

    iPhoto 8 won't minimize by double clicking on the title bar. What's up? Only works with the yellow button or "Window - minimize" menu. Message was edited by: pemuise