Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3931516
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T23:21:33+00:00 2026-05-19T23:21:33+00:00

For example, say I have: public var usersOnlineArray:Array = new Array(bob,jim,tim,marry,luke); and when I

  • 0

For example, say I have:

public var usersOnlineArray:Array = new Array(bob,jim,tim,marry,luke);

and when I put that into my datagrid like this:

buddylist.dataProvider = new DataProvider(usersOnlineArray);
buddylist.rowCount = buddylist.length;
bldBuddyList(buddylist);

How could I, let’s say, prevent luke from appearing in the datagrid? Basically make him not appear but technically “still be there” so I can make him reappear later but?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T23:21:33+00:00Added an answer on May 19, 2026 at 11:21 pm

    I’d start by using ArrayCollection rather than Array since you can make use of data binding this way.

    ArrayCollection also has a filterFunction property that will allow you to hide things but still keep them in the collection. The docs will expand on all of this but the gist is:

    Make the ArrayCollection, it just takes plain ole Array in the constructor.

    public var usersArr:Array = [bob, jim, tim, marry, luke];

    public var usersAC:ArrayCollection = new ArrayCollection(usersArr);

    Set the AC to be the data provider for the List.

    buddyList.dataProvider = usersAC;

    Define the filter function. This function takes an object and returns true if it should be visible, false if not.

    public function myFilterFunction(o:Object):Boolean
    {
       if (o.toString() == "luke") return false;
    
       return true;
    }
    

    Then apply this function to the AC.

    usersAC.filterFunction = myFilterFunction;

    To remove the filter simply null our the filterFunction property.

    usersAC.filterFunction = null;

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have found this example on StackOverflow: var people = new List<Person> { new
I am trying to redirect to a specific path based on HTTP_HOST or SERVER_NAME
I am trying to understand the practical difference during the execution of a program
I need to solve the following question which i can't get to work by
I am playing with TFS 2010, and am trying to setup a build process

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.