How to remove particular item in array

hai friends,
how to remove particular item in array

use splice() method
http://livedocs.adobe.com/flex/3/langref/Array.html#splice%28%29

Similar Messages

  • How to remove an item from side bar?

    Can anyone teach me how to remove following item  from side bar:    Thank you!

    Niel thank you very much for you help.

  • How to remove these items from Infopath ribbon in web enable form?

    Hi All,
    I am using custom list form customized in infopath 2013, I want to remove these items from ribbon :
    I tried with Infopath  "form Options" like:
    But still showing "Picture-1" options. How to remove those items from ribbob?

    Hi,
    I understand that in the list view web part, you wanted to remove the ribbon of InfoPath form.
    There are to mothed to achieve it:
    Open the list, click new item, edit page, edit web part, unclick the ‘Show InfoPath Ribbon or toolbar’ box, the new item page will remove the riibon.  Then when you open the page which has the list view web part, the ribbon of InfoPath form will also
    be removed.
    Open the page which has the list view web part, edit page, edit the list view web part, unclick the ‘Show InfoPath Ribbon or toolbar’ box, the ribbon of InfoPath form in the web part will be removed. Then when you open the list, the ribbon of InfoPath form
    will also be removed.
    The two method edit the same page newifs.aspx, so the list and the webpart will be modified in the same time.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to remove the item content from my alert Template (alerttemplates.xml) .

    I have enabled alerts to be send from my enterprise wiki & announcement list. Currently the alert email, will display the item content inside the email (the wiki page content or the announcement list content), which i do not want to have. So is
    there a way to remove the item content , so my alert message contains only the following info such as:-
    Our Group Intranet
    TestItem has been added
    Modify my alert settings
    |
    View TestItem
    |
    View News & Announcements
    |
    Mobile View

    Hi johnjohn123,
    According to your description, my understanding is that you want to change the notification message in the alert template.
    You can edit the ImmediateNotificationExcludedFields and DigestNotificationExcludedFields tags to achieve it. After editing the xml, remember apply the template
    to your site using the command below.
    execute command stsadm -o updatealerttemplates -filename <your modified xml file> -url <your site>
    Also, It is not suggested to edit the alert template directly, I suggest you back up the template firstly before customization.
    More information:
    How to change alert email notification message:
    http://dirkvandenberghe.com/2008/01/08/how-to-change-the-alert-email-notification-message-for-announcements.html
    AlertTemplates schema:
    http://msdn.microsoft.com/en-us/library/office/bb802961(v=office.15).aspx
    Best regards,
    Zhengyu Guo
    Zhengyu Guo
    TechNet Community Support

  • How to remove all item in JPanel???

    How to effectively remove all item before add new item and display new panel??? I only know
    p1.setLayout(null);But seems like my JButton still there....Please advice

    As we dunno what the item in the panel, we just want to clear all item in panel. Because the clear panel in action listener, it perform clear the previous panel before display new panel.
    Please advice

  • How to remove the item in Did.View .

    Hi,
    How to remove the Work sheet item in Dis.viewer.By using drill to related u can add the item into the worksheet.i want to remove the same...
    Regards
    Manikandan.

    Hi Manikandan
    Just use the back button on the browser. The page will return to the original query. That's the whole point of why Viewer is based on HTML.
    Bets wishes
    Michael

  • How to remove an item in a folder in Reminders on the IMAC

    I am trying to remove an item in a folder in Reminders on my IMAC.  I tried holding down the control key and clicking on the item.  Sometimes I get a pop up menu with the "delete" option.  But more often than none when I do this I get a pop up menu to cut, copy etc...not to delete.  Why the inconsistencies in holding down the control key and clicking the mouse?  Is there another way to remove the item listed in the folder?
    Thank you for your help.

    Hi ly_he,
    You have posted the same thread in the chinese forum of WPF, and I have replied. You could see here:
    https://social.msdn.microsoft.com/Forums/zh-CN/029bccae-f2f0-4218-980b-2389da8e5d2c/mvvm-wpf-treeview?forum=wpfzhchs
    Best Regards,
    Xavier Eoro
    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.

  • URGENT: How to remove an Item from HTMLB listbox

    Hi All,
    I am designing a page, which contains a listbox, whose contents(items) need to be changed dynamically.
    I can populate it dynamically using
                   listbox.addItem(key, string)
    But, i don't see any specific methods to remove an item from it.
    Please Help Me in this Regard..
    vijay

    Hi Vijay,
    (a) every request on SDN is expected as urgent... If you won't use this word in the future, you'll have more time for solving your problems
    (b) If your listbox.getModel() returns the DefaultListModel, you can call removeItem(String key) on the model; see http://media.sdn.sap.com/javadocs/preNW04/SP2/60_sp2_javadocs/htmlb/com/sapportals/htmlb/DefaultListModel.html#removeItem(java.lang.String) for details
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • ComboBox Item How to remove repeating items that came from an entity of a .dbf database

    Hi all,
    Can somebody help me? What  I want to happen is create a ComboBox Item from a .dbf database, the PMXMON contains each product's monthly data. Here's a screenshot of the output:
    Is there a way to remove repeating items without changing the database contents?
    I have this code:
    Private Sub frmYearMonth_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Dim conn As New System.Data.Odbc.OdbcConnection("Driver={Microsoft Visual FoxPro Driver};SourceType=DBF;SourceDB=C:\;Exclusive=No")
    conn.Open()
    Dim strQuery As String = "SELECT * FROM CSHPMXP1"
    Dim adapter As New System.Data.Odbc.OdbcDataAdapter(strQuery, conn)
    Dim ds As New System.Data.DataSet()
    adapter.Fill(ds, "PMXMON")
    With ComboBox1
    .DataSource = ds.Tables("PMXMON")
    .DisplayMember = "PMXMON"
    .ValueMember = "PMXMON"
    .SelectedIndex = 0
    .Text = "--YYYYmm--"
    End With
    End Sub
    Thanks :)
    Geee

    You can use Distinct keyword to return unique records from your DB.
    On the side  I'm not seeing any informative value in your Comobox, if you trying to show product monthly data.
    SELECT Distinct PMXMON
    FROM CSHPMXP1
    Fouad Roumieh

  • ArrayList question. How to remove an Item

    I have an array collection that is going to contain a list of username.
    I would like to fine one of the names and remove it from a list. How could I do this.
    I am an Actionscript programmer so if I where to do this in AS I would do it like this.
    for(var i:int=0; i<myarray.length; i++)
          if(myarray[i] == "matthew")
          myarray.remove(i);
    }in Java I am not seeing a length property for the ArrayList

    7biscuits wrote:
    ArrayList al = new ArrayList();
    al.add("aa");
    al.add("ab");
    al.add("ac");
    al.add("ad");
    for(int i=0; i<al.size(); i++){
    if(al.get(i)=="ac"){
    al.remove(i);
    }here "ac" is removed from the arraylistAll I can do is shake my head and chuckle (and sigh).
    Don't use == to compare Strings, and did you not read the rest of the thread that said it is not necessary to use the index? Not to mention, to either you or the OP, that 2 seconds of looking at the API docs would have let the both of you come to that same conclusion.
    Also, if you do remove items in an ArrayList in this manner (for whatever reason) then loop through the ArrayList backwards, or you will skip an element every time you remove one.
    Too little, too late, and so off target.

  • How to remove suppressed items in the group tree from the crystal report print preview screen

    I am removing items in report using group selection formula. Although the removed items are not available in the report, they are still available in the group navigation tree on the left pane. Is there a way to overcome this ?

    Hi All,
    How can i use the below group selection code in record selection.
    TotalQuantity := sum({ICIVAL.QUANTITY},{ICIVAL.ITEMNO});
    TotalCost := sum({ICIVAL.TRANSCOST},{ICIVAL.ITEMNO});
    iIncludeQty := TONUMBER({?INCLUDEQTY});
    iIncludeCost := TONUMBER({?INCLUDECOST});
    bIncludeQty := FALSE;
    bIncludeCost := FALSE;
    SELECT iIncludeQty
        CASE 0:
            bIncludeQty := TRUE
        CASE 1:
            If TotalQuantity > 0 THEN
                bIncludeQty := TRUE
        CASE 2:
            If TotalQuantity = 0 Then
                bIncludeQty := TRUE
        CASE 3:
            If TotalQuantity < 0 THEN
                bIncludeQty := TRUE
        CASE 4:
            If TotalQuantity <> 0 THEN
                bIncludeQty := TRUE
    SELECT iIncludeCost
        CASE 0:
            bIncludeCost := TRUE
        CASE 1:
            If TotalCost > 0 THEN
                bIncludeCost := TRUE
        CASE 2:
            If TotalCost = 0 Then
                bIncludeCost := TRUE
        CASE 3:
            If TotalCost < 0 THEN
                bIncludeCost := TRUE
        CASE 4:
            If TotalCost <> 0 THEN
                bIncludeCost := TRUE
    bIncludeQty AND bIncludeCost

  • How to remove an item from one of the tabs?

    How can one remove one of the items from a tab in SAP portal? Here, I'd like to remove the 'Change Order' under Time Administration.

    Hi Sean,
    Right click on the role, choose Open -> Role.
    Find and select "CHANGE ORDER" iview in the role content.
    You can now either delete it from the role or just prevent from being displayed
    Click Open.
    Click Properties, then click on All.
    Find property called "Invisible in Navigation Areas" and set it to Yes.
    Please be aware that clearing navigation cache might be needed for changes to become visible.

  • How to remove an item from Launchpad

    I am new to os X 10.7 and just tried the Lauchpd.  I know you can hold an item down or  press the Option key and all
    icons will jiggle. Once the jiggle how do you remove the time?  I did not see an X  and could not drag an item to trash,.

    You answerd my quesiton. Users cannot remove items from the Lauchpad.  They can be shifted to the back but the only way to remove a non Apple Store item is to remove it from the computer. 
    I have decided to remove the Launchpad from the Dock and may never visit it again.
    No follow up needed. 

  • Can anyone advise me how to remove an item from iCloud

    I am trying to clean up my iPad and still many items tht show up when I clikc on Videos.  They don't show up in my itunes Library on my PC when I am connected and I realized they are things from over time that were downloaded, viewed and I thought deleted.  How do I remove them so they no longer show up as Cloud Movies or TV Shows on my iPad?

    You can not delete purchases.
    This will get them to stop showing on your iPad:
    Settings > Music > Show All Music - toggle off
    Settings > Videos > Show All Videos - toggle off
    You can also hide iTunes purchases:
    iTunes Store: Hiding and unhiding purchases - Support - Apple

  • How to remove duplicate items ?

    ok so ive moved my iTunes library from the NAS drive I bought (after finding out that wouldnt work) onto my new laCie external drive, but ive found some of my albums have triple copies?
    i know how to show duplicates but im not sure how to safely remove duplicates without deleting all copies?

    Oh boy.
    I'm sure there are better ways to do it than this and it will take time, but to avoid all possible loss of data, what I would do is first consolidate all of your libraries.
    • Open the iTunes Library you think is most correct by holding down the OPTION key when you open the iTunes application, which should bring up a dialogue like this: http://cl.ly/image/2i2Q3o0Z0Y3C
    • Then go to preferences and make sure it looks like this: http://cl.ly/image/2C2Z0u0C3T3c
    I would recommend keeping your main iTunes library on your main hard drive (for me that's my internal), unless you definitely can't fit it.
    • Now go to the File menu >Library > Import Playlist
    • Navigate to another of the libraries, and click on the iTunes Library.xml file and import it. Do this for each of your libraries, except the one you are currently using.
    • Now that you've got everything imported into the one library, the fun part starts.
    Do what i said in my previous post and remove all the duplicates.
    • Once that's done, check all the other libraries to make sure you haven't missed anything, and send them on their way to the Trash, and empty it to reclaim all that space.
    I really hope you get this sorted, I went through an ordeal like this myself recently, so it's going to take time, but it feels good when it's all cleaned up and finished!
    xeni
    PS. After writing all this I thought, hmm, why didn't I just Google it instead of figuring it out myself? ;P
    I found this, and it might help if my instructions weren't clear enough. https://bitly.com/LpqFPq
    Also, if you don't already, I urge you to use Time Machine backup. Read more here: http://www.apple.com/osx/apps/#timemachine and http://pondini.org/TM/FAQ.html

Maybe you are looking for

  • Enabling dtlogin after SUNWjass hardening

    Hi, I am trying to re-enable the ability to use X Windows on a newly hardened Solaris 10 system. I ran the hardening script from the LDOM package install and since haven't been able to get a session going. Here's the output from running X on the clie

  • Weblogic 6.1 deployment out of memory error - please help

    I am getting an out of memory error when deploying an ear to a weblogic 6.1 server. I tried increasing heap size with the startup param. I also tried upgrading the jdk to 1.3.1_02. Here is how I am starting weblogic - "%JAVA_HOME%\bin\java" -hotspot

  • Error Connecting to Oracle 9i Database

    Ok I have a semi large program and a part of it connects to an Oracle 9i databse. I am using Visual Age for Java IDE and I am getting an error of "java.sql.SQLException: [Microsoft][ODBC driver for Oracle][Oracle]ORA-00917: missing comma" Of course t

  • "What's happening today" switches to the old status

    Hello, I have a client with new Lync 2013 deployment. They are telling me that for the most users "what's happening today" status switches back to something they entered a few weeks ago. Any ideas? Thank you. Thank you. Eric.

  • Capacity planning guide lines

    <p>I would like to know, especially for Planning module, whetherthere is a capacity planning document on disk space allocationdepending on number of users. For example, for 100 users to useplanning module, how much disk space is requred?</p><p> </p><