Open GoogleCodeExporter opened 8 years ago
Original comment by dmcc...@gmail.com
on 25 Dec 2007 at 2:24
Original comment by dmcc...@gmail.com
on 26 Dec 2007 at 7:32
The fix for this is to move the null check as the first statement:
public function openItemAt( rowNum : Number, item : Object = null ) : void
{
if ( item == null )
item = ListCollectionView( _displayedModel ).getItemAt( rowNum );
var uid : String = itemToUID( item );
openItems[ uid ] = item;
this.selectedIndex = -1;
Original comment by hughes.m...@gmail.com
on 30 Sep 2008 at 7:43
Original issue reported on code.google.com by
darron.schall
on 21 Sep 2007 at 6:15