[AS]DataGrid and Row Id!

Hello guys,

I have a little problem, i have a datagrid that it’s populated from a XML file.
The XML structure is this:


<data>
  <row url="print_news.php">
       <id>"x"</id>
       <data>"MM/DD/YYYY"</data>
       <news>"message"</news>
  </row>

 <row url="print_news.php">
       <id>"x"</id>
       <data>"MM/DD/YYYY"</data>
       <news>"message"</news>
  </row>

<data>

     -"x" = it is added automaticaly from the datebase;
     -"MM/DD/YYYY" = it is added automaticaly from the datebase;
     -"message" = it is taken automaticaly from the datebase;

The XML it is created by a php script.

In the swf i have the datagrid with cellrenderer API.
My question is:
I want when i click on the first news(row,id) on the datagrid to call the print_news.php and take the id = 1 (the id that corespond to the datagrid row).

Do you think you can help me with this?

P.S. If you want more details ask me, in first post i don’t know what you need?