Show only part of a list in dependencies of a node

I have a XMLlistCollection who shall fill up my Applikation.
In some views I only want to show a part of all entries. Equivalent
to a mysql query where I can say: give me all where myNode contains
this string.
Is there a way to to so? I did a research since 3h, but I'm
sure for what to search.
Any hint would be appreciated.
Michael

Look into "filter" for collections.
For XML, use e4x expressions.
Tracy

Similar Messages

  • CS13 ----- will it show only parts with procurement type F ?

    Hi,
    I have a basc issue
    when we execute CS13 it summarises teh BOm and show the Bom component and  quantity .
    will it show only parts with procurement type F ?
    when we execute CS13 for a finished product , its not displaying all the BOM components , the list is displaying only few
    what might be the reason
    will it show the parts only directly linked to it at the first level ?
    regards,
    madhu kiran.

    Hi,
    CS13 shows summarize BOM that mean it leaves out all the intermediate BOMs(sub assemblies) and displays on the end components.  End component need not have procurement type F.
    It will display End components in the any level.
    To simply cross check, in CS12 add colum Assembly indicator and filter only those components having blank value. You will get report displayed as that of CS13.
    Regards,
    Krishna Mohan

  • Show only Start Time in List View?

    When I print my iCal calendar in List View, it prints out Start and End times for each event. This, despite the fact that I don't create End Times for these events. Just the Start Times. So everything shows up like this:
    9AM (1/25) to 9AM (1/25) Breakfast meeting
    11AM (1/25) to 11AM (1/25) Sales Meeting
    12:30PM (1/25) to 12:30PM (1/25) Lunch
    ... etc.
    Is there some way to get it not to print the End Time if it's the same as the Start Time? Or, failing that, just not print the End Time regardless if it's the same as the Start Time or not?

    ---

  • How can i make that in the ComboBox control it will show only part of each item name without the Win32_ in the start of each item ?

    This is my form1 code:
    using System;
    using System.Collections;
    using System.Management;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    namespace GetHardwareInfo
    public partial class frmMain : Form
    public frmMain()
    InitializeComponent();
    cmbxOption.SelectedItem = "Win32_Processor";
    cmbxStorage.SelectedItem = "Win32_DiskDrive";
    cmbxMemory.SelectedItem = "Win32_CacheMemory";
    cmbxSystemInfo.SelectedItem = "";
    cmbxNetwork.SelectedItem = "Win32_NetworkAdapter";
    cmbxUserAccount.SelectedItem = "Win32_SystemUsers";
    cmbxDeveloper.SelectedItem = "Win32_COMApplication";
    cmbxUtility.SelectedItem = "Win32_1394Controller";
    private void InsertInfo(string Key, ref ListView lst, bool DontInsertNull)
    lst.Items.Clear();
    ManagementObjectSearcher searcher = new ManagementObjectSearcher("select * from " + Key);
    try
    foreach (ManagementObject share in searcher.Get())
    ListViewGroup grp;
    try
    grp = lst.Groups.Add(share["Name"].ToString(), share["Name"].ToString());
    catch
    grp = lst.Groups.Add(share.ToString(), share.ToString());
    if (share.Properties.Count <= 0)
    MessageBox.Show("No Information Available", "No Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
    return;
    foreach (PropertyData PC in share.Properties)
    ListViewItem item = new ListViewItem(grp);
    if (lst.Items.Count % 2 != 0)
    item.BackColor = Color.White;
    else
    item.BackColor = Color.WhiteSmoke;
    item.Text = PC.Name;
    if (PC.Value != null && PC.Value.ToString() != "")
    switch (PC.Value.GetType().ToString())
    case "System.String[]":
    string[] str = (string[])PC.Value;
    string str2 = "";
    foreach (string st in str)
    str2 += st + " ";
    item.SubItems.Add(str2);
    break;
    case "System.UInt16[]":
    ushort[] shortData = (ushort[])PC.Value;
    string tstr2 = "";
    foreach (ushort st in shortData)
    tstr2 += st.ToString() + " ";
    item.SubItems.Add(tstr2);
    break;
    default:
    item.SubItems.Add(PC.Value.ToString());
    break;
    else
    if (!DontInsertNull)
    item.SubItems.Add("No Information available");
    else
    continue;
    lst.Items.Add(item);
    catch (Exception exp)
    MessageBox.Show("can't get data because of the followeing error \n" + exp.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Information);
    private void RemoveNullValue(ref ListView lst)
    foreach (ListViewItem item in lst.Items)
    if (item.SubItems[1].Text == "No Information available")
    item.Remove();
    #region Control events ...
    private void cmbxNetwork_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxNetwork.SelectedItem.ToString(), ref lstNetwork, chkNetwork.Checked);
    private void cmbxSystemInfo_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxSystemInfo.SelectedItem.ToString(), ref lstSystemInfo, chkSystemInfo.Checked);
    private void cmbxUtility_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxUtility.SelectedItem.ToString(), ref lstUtility, chkUtility.Checked);
    private void cmbxUserAccount_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxUserAccount.SelectedItem.ToString(), ref lstUserAccount, chkUserAccount.Checked);
    private void cmbxStorage_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxStorage.SelectedItem.ToString(), ref lstStorage, chkDataStorage.Checked);
    private void cmbxDeveloper_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxDeveloper.SelectedItem.ToString(), ref lstDeveloper, chkDeveloper.Checked);
    private void cmbxMemory_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxMemory.SelectedItem.ToString(), ref lstMemory, chkMemory.Checked);
    private void chkHardware_CheckedChanged(object sender, EventArgs e)
    if (chkHardware.Checked)
    RemoveNullValue(ref lstDisplayHardware);
    else
    InsertInfo(cmbxOption.SelectedItem.ToString(), ref lstDisplayHardware, chkHardware.Checked);
    private void cmbxOption_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxOption.SelectedItem.ToString(), ref lstDisplayHardware, chkHardware.Checked);
    private void chkDataStorage_CheckedChanged(object sender, EventArgs e)
    if (chkDataStorage.Checked)
    RemoveNullValue(ref lstStorage);
    else
    InsertInfo(cmbxStorage.SelectedItem.ToString(), ref lstStorage, chkDataStorage.Checked);
    private void chkMemory_CheckedChanged(object sender, EventArgs e)
    if (chkMemory.Checked)
    RemoveNullValue(ref lstMemory);
    else
    InsertInfo(cmbxMemory.SelectedItem.ToString(), ref lstStorage, false);
    private void chkSystemInfo_CheckedChanged(object sender, EventArgs e)
    if (chkSystemInfo.Checked)
    RemoveNullValue(ref lstSystemInfo);
    else
    InsertInfo(cmbxSystemInfo.SelectedItem.ToString(), ref lstSystemInfo, false);
    private void chkNetwork_CheckedChanged(object sender, EventArgs e)
    if (chkNetwork.Checked)
    RemoveNullValue(ref lstNetwork);
    else
    InsertInfo(cmbxNetwork.SelectedItem.ToString(), ref lstNetwork, false);
    private void chkUserAccount_CheckedChanged(object sender, EventArgs e)
    if (chkUserAccount.Checked)
    RemoveNullValue(ref lstUserAccount);
    else
    InsertInfo(cmbxUserAccount.SelectedItem.ToString(), ref lstUserAccount, false);
    private void chkDeveloper_CheckedChanged(object sender, EventArgs e)
    if (chkDeveloper.Checked)
    RemoveNullValue(ref lstDeveloper);
    else
    InsertInfo(cmbxDeveloper.SelectedItem.ToString(), ref lstDeveloper, false);
    private void chkUtility_CheckedChanged(object sender, EventArgs e)
    if (chkUtility.Checked)
    RemoveNullValue(ref lstUtility);
    else
    InsertInfo(cmbxUtility.SelectedItem.ToString(), ref lstUtility, false);
    private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
    linkLabel1.LinkVisited = true;
    System.Diagnostics.Process.Start("http://www.test.net");
    #endregion
    What i get is in the end that in the ComboBox in this case i call it cmbxNetwork i see in it many items all start with Win32_ For example when i click on ComboBox i see the first item is: "Win32_NetworkAdapter"
    Instead Win32_NetworkAdapter i want to see in the ComboBox only: NetworkAdapter But when i select the item it should be selected as Win32_NetworkAdapter but the user should see and select only NetworkAdapter.
    I want to remove as test from the ComboBox items the Win32_ But only that the user will see it without Win32_
    Also in the constructor when i'm doing now: cmbxNetwork.SelectedItem = "Win32_NetworkAdapter"; so instead if i'm doing: cmbxNetwork.SelectedItem = "NetworkAdapter"; it will be enough. THe program will use the "Win32_NetworkAdapter";
    but again what i see and user in the ComboBox as item is only the NetworkAdapter

    Hi Chocolade1972,
    >> I want to remove as test from the ComboBox items the Win32_ But only that the user will see it without Win32_  Also in the constructor when i'm doing now: cmbxNetwork.SelectedItem = "Win32_NetworkAdapter"; so instead if i'm doing:
    cmbxNetwork.SelectedItem = "NetworkAdapter";
    Do you mean that you want the ComboBox show the value of “NetworkAdapter” in the text, but when you refer the value of the cmbxNetwork.SelectedItem, it will be “Win32_NetworkAdapter”? If so, I am afraid that you need create your own ComboboxItem and override
    the ToString() method to return the text you want.
    You could modify the code below for your own achievement.
    public partial class Form0417 : Form
    public Form0417()
    InitializeComponent();
    public class ComboboxItem
    public string Text { get; set; }
    public object Value { get; set; }
    public override string ToString()
    return Text;
    private void Form0417_Load(object sender, EventArgs e)
    ComboboxItem item1 = new ComboboxItem();
    item1.Text = "Processor";
    item1.Value = "Win32_Processor";
    ComboboxItem item2 = new ComboboxItem();
    item2.Text = "DiskDrive";
    item2.Value = "Win32_DiskDrive";
    cmbxOption.Items.Add(item1);
    cmbxOption.Items.Add(item2);
    //MessageBox.Show((cmbxOption.SelectedItem as ComboboxItem).Value.ToString());
    private void cmbxOption_SelectedIndexChanged(object sender, EventArgs e)
    MessageBox.Show((cmbxOption.SelectedItem as ComboboxItem).Value.ToString());
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Configuring active x container to show only part of a web page (net camera)

    I've been working on an interface controlling a goniometer for crystal alignment.
    A NETcam has been plugged into the network and streams a live image from the equipment being moved by the controls.
    I need to integrate the NETcam into the control panel.
    I've managed to do this but the actual NETcam has a built in homepage on it with few custom features to ammend a custom page fully.
    I am stuck with the streaming image in the middle of a web page from the active x window.
    Is there any way I can cut out part of a web page to view only a certain area of it with no scroll bars aswell? The cam is an AXIS2100.
    James.

    James,
    Take a look at the code for the web page. You may find that the camera is itself either another URL, or an image that is part of the page. I haven't worked with this type of data before, but I have worked extensively with web content and HTML, as well as browsers.
    You can try several things. If the camera has a URL, use datasocket to link to that. If the image is a separate link, which you can tell by right clicking on the webcam image and clicking "save link as...", then you can setup your browser to look at this image only.
    If you can, post the URL for the page you are having problems with, or email me the source for it, and I will try to help.
    Good luck

  • Score window in page mode shows only part of the composition

    I have an on going issue in Logic X: The score in page mode mostly refuses to show more than a couple of pages.
    There does not seem to be a logical reason for this. Deleting the score window and replacing it by another one shows the same issue,
    but on a different page.

    Hi Peter,
    Based on your description, it may be a compatibility issue. I suggest that you first check the issue in IE Compatibility View mode. Please refer to the following steps to troubleshooting this issue:
    1. Launch the IE, and press Alt+T to select the Tools.
    2. Click Compatibility View settings.
    3. Check the “Display intranet sites in Compatibility View” option, and click Close.
    Alternatively, please to do this, click Alt+T and select Compatibility View or add the http://<ServerName> URL to the Compatibility View list.
    There is an article about IE Compatibility, you can refer to it.
    http://msdn.microsoft.com/en-us/library/ie/gg622935(v=vs.85).aspx
    Hope this helps.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Web part created on a subsite for a sharepoint list in another site using sharepoint designer, to show only the subsite's reports. Connection dropping off and showing all the reports

    I crated web parts in the sub-sites (we have about 10 subsites) using sharepoint designer from a main list in another site.  Then used web part to show only the  ubsite's reports - using connection to the main list.  Problem is, the connection
    is dropping off and showing all the reports on the main list that are confidential.  this has happened 3 time lately.  Could someone explain why it happens some times?  I had to fix it by adding the web part again and connecting it
    Thanks, Subathy.

    Hi George,
    If you want to use a top level site "department" list column in all sub-sites, you can go to top level site and create a
    lookup type "Site column" to look up the value from the department list, then all sub-sites can use this lookup type site column created in top level site.
    Thanks 
    Daniel Yang
    TechNet Community Support

  • Show only status indicator icon for Status List Web Part

    Is there anyway to show ONLY the traffic light status indicator option for the status indicator web part?

    Well heck! I didn't know you were being forced to suffer in Quirks Mode!
    Quirks Mode kicks in if a page doesn't have a <!DOCTYPE> tag as its first element, which might have happened if you have any custom master pages, or if you upgraded to SharePoint 2010 from 2007, reusing some of the default master pages.
    The fix appears to be to add a proper doc type declaration to the top of your masterpage (or to your standalone page, if it's been customized), before the opening <html> tag.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    For reference:
    http://blogs.msdn.com/b/alimaz/archive/2010/01/10/sharepoint-2010-ribbon-and-quirks-mode-issue.aspx
    http://blog.tylerholmes.com/2008/08/quirks-mode-strikes-again.html
    http://heathersolomon.com/blog/archive/2008/01/25/DOCTYPES-and-SharePoint.aspx

  • Missing parts list shows only the first material.

    in case of MTO cycle, when i create a plnd order to prod order,in material availability check, system is not displaying all the materials for which shortages are there, instead its showing only the first material.
    any help

    You need to ensure that these materials are actually missing. You check this in transaction CO09 (SAP Note 89362). The checking rule will be whatever you assigned to the production order type in OPJK.
    Also, you need to ensure that the "missing" materials are actually checked for availability - The checking group is assigned in the MRP3 tab of the material master. In OVZ2, look at the entry for this checking group and ensure that "No Check" is not ticked.

  • I downloaded a WMA audiobook from library using Overdrive. It shows up on my Itunes listing of Audiobooks on my Ipod, but on the actual Ipod it only shows up on Playlists. How do I get it to show up under Audiobooks?

    I downloaded a WMA audiobook from library using Overdrive. It shows up on my Itunes listing of Audiobooks on my Ipod, but on the actual Ipod it only shows up on Playlists.  It is marked as an audiobook in Options | Media Kind.  It is also marked to Remeber Position, but it does not do that. How do I get it to show up under Audiobooks and remember the position?  I have a 4th Gen Ipod running Ios5

    Check out the instructions for a work around on this post: https://discussions.apple.com/message/18702732#18702732
    This worked for me.  I would like to see Apple fix this issue, as it isn't very fun to have to do this for every downloaded book.

  • How to show only one element in drop list(common VO)

    Hi All,
    I'm using 11g adf jdev.
    I have a common view object VO. In this VO one attribute is dropdown list , which i commonly used in some jsf pages .
    Now in one particular jsf page i want show only one element in the dropdown list .
    how can i handle with out distrib'g the common VO.
    THANKS IN ADVANCE

    BTW, why you want to display only one item in the list.
    If you are sure that the list will be having only one item, why don't you have it as inputText/outputText
    How do you filter out the item to be displayed in the list? If that filtering is done on listdatasource bound to the list, the list will automatically show only one item(i.e, the filtered item)
    HTH
    Sireesha

  • I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    Are the contact details in your contacts app, the phone app uses the contact app to put names against telephone numbers.

  • Latest ep of my podcast doesn't show in iTunes. Subscribers CAN download it. Podcast page shows 'Total: 3 items' but lists only items 2 and 3. RSS feed is validated and fine.

    Latest ep of my podcast doesn't show in iTunes store. Subscribers CAN download it. Podcast page shows 'Total: 3 items' but lists only items 2 and 3. RSS feed is validated and fine. How do I get iTunes to display it?

    I've used Feedburner many times and never had such a problem. I am a bit confused, forgive me if I ask for questions already answerd. Have you tried updating the podcast in someone elses copy of iTunes? My guess is that the file is bad since it is working in other programs but not iTunes. I would try making a new .mp4 file and podcasting it and seeing if that works.
    Good luck!
    ~Ben

  • Custom Search Results web part: show only sites wherein the current user has access

    Hi,
    I'm trying to create a custom Search Box and Search Results web part in one of my web application. The search result should show only sites wherein the current user only has an access. Do you have an idea how to implement this? Thanks. :)
    Regards,
    Napster

    Hi Napster,
    From my experience, we can only search the result which we have view permission at least.
    Please provide more information about your requirement if there is misunderstanding.
    More information about search result web part:
    http://technet.microsoft.com/en-in/library/gg549987(v=office.15).aspx
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • I just moved my Itunes content to a computer with Win 7. I can only get "songs" in list view. How do I correct this so I can see Artist and Genre also in list view. The box to show all list in list view is checked but it only shows album view

    I just moved all my itunes content to a windows 7 computer. I can only get "songs" in list view. Genre and Artist show as Album views. The box in preferences is checked so that all lists should show as list. How can I get a list view for Artists and Genre also?

    Only when i go to a different browser (like IE) after i clear it , then all that shows up is the pages i visited in IE , that is what bugs me , why is IE browsing history sowing up in Firefox ??
    Basically , i can clear the history in Firefox , and then for a example , go to Craigslist , using IE7 (launching it from a complete different Icon , in other words at that time i never open Firefox) , then after closing out , or even leaving open as it does not seem to matter , i go into Firefox , and hit History , and there is every place i visited in IE7 , on my History in Firefox

Maybe you are looking for

  • Is it possible to change the size of the 'Close' button in Full Screen viewing mode?

    I am currently using Firefox for a kiosk type scenario. We require that the browser run full screen. The issue is that the 'Close' button is not large enough for users to consistently see, so they're having issues figuring out how to close an active

  • Vista 64 bit and CS4 and color management

    This is a question about Vista 64 bit and CS4 and color management. I scan 4x5 film and sometimes end up with up to or even bigger than 1 GB files. Obviously that needs as much memory as possible. Windows XP is limited in this regard and I am in the

  • Both safari and firefox are telling me that websites are not "verified" and that they cannot identify the sites

    When I turned on my computer today, the date and time were completely wrong.  I then went to sign into familiar websites I use (gmail, facebook, etc) and both safari and firefox had pop ups that said that they could not "identify" and "verify" the si

  • Apple TV vs Airserver in schools

    Hello everyone. I am a Computing Coordinator in a primary school which has just purchased a number of iPads to be used by class teachers and children. In order to mirror the iPads onto the whiteboard I am looking into getting either a set of Apple TV

  • ITunes library gets lost after closing.

    Been doing this since I was running Windows Vista and the problem persists with Windows 7.  Software is up to date, devices up to date.  The next time I try to open iTunes, I have to re-import all music, and then when I try to sync the device, it doe