I need to delete all existing rows from a data grid, i have tried using this but doesn't work:

    public function GetMusicList(obj:Object):void{

        for(var j = 0; j < mc_music.datagrid.rowCount; j++){
            mc_music.datagrid.dataProvider.removeItemAt(0);
        }

        for(var i = 0; i < obj.length; i++){
            mc_music.datagrid.addItem({Name: obj[i].toString()});
        }   
    }
link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

Your title is asking a different question than your actual question, but to remove all the rows just do datagrid.removeAll();

link|improve this answer
feedback

Once you have removed the items you want from the datagrid's dataprovider, you should invalidate it using datagrid.invalidateList()

link|improve this answer
feedback

Additionally you can set the data provider of the data grid to a valid dataProvider with no data it in, but I would look into one of the other answers first as calling a pre-built method feels cleaner.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.