Thursday

flex grid refresh

here refresh samples of posible grid refresh calls

private function refresh():void{
MyDataProvider.MyDataArrayCollection.refresh();
myGrid.data=MyDataProvider.MyDataArrayCollection;
myGrid.invalidateList();
myGrid.invalidateDisplayList();
myGrid.dataProvider.refresh;
myGrid.executeBindings(false);
ArrayCollection(myGrid.dataProvider).refresh();
}

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...