Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
anoweb #1
Play effect when row updated in DataGrid
I have a DataGrid that contains N number of rows. When one of the rows is updated I'd like to play some sort of effect to highlight the fact that the row changed. Any suggestions?
anoweb Guest
-
play effect when removing item from TileList
I want to play an effect when removing an item from a TileList. I tried several different methods, such as defining a removedeffect for the... -
Get updated values from DataGrid
Hi I have a DataGrid, with Edit links in each row. The Edit button works, the user can change the values. But I can't get updating to work. ... -
How do I play an effect loop
Has anyone got an elegent way to repeat an effect while the mouse is over something, like a fade in and out. -
Updated Movie won't play right
I'm editing a 7.0 project in Director in 8.0. The client sent me DMfade xtra that goes with the movie. I put it in the Xtras folder. When I create a... -
Datagrid not updated during delete, but updated during insert and update
Hello everyone. A test webform here, single datagrid bound to one table through dataset, and controls to delete, update and insert data. The code... -
-
nrutter #3
Re: Play effect when row updated in DataGrid
The only thing I can think of is to highlight the updated row. That's an interesting question....
dgData.selectedIndex = i; (i being your updated row)
nrutter Guest
-
atta707 #4
Re: Play effect when row updated in DataGrid
1) add an event listener to the underlying array collection of your array
collection. For an example study:
[url]http://blog.paranoidferret.com/index.php/2007/08/24/flex-php-json-mysql-advanced[/url]
-updating/
2) on update event, identify the current row in the grid
3) You have to decide wether this effect is for a single column or for the
whole row. Technically, a row is a collection independent columns.
4) if for single column, just write a simple custom renderer and add the
effect to that renderer on the update event
5) for a complete row background study:
[url]http://weblogs.macromedia.com/pent/archives/2007/02/coloring_the_ba.html[/url]
Hope this helps.
ATTA
atta707 Guest
-
anoweb #5
Re: Play effect when row updated in DataGrid
the link provided should work:
[url]http://weblogs.macromedia.com/pent/archives/2007/02/coloring_the_ba.html[/url]
anoweb Guest



Reply With Quote

