Hello all,
I have a backend, written in PHP, that will obtain info from a
database, and send it to my Flash datagrid in XML. This part works
fine. The datagrid will display the information okay as well. What
I'd like to do, however, is instead of one of the columns of cells
displaying the result, it actually working like a link button would,
and allow the user to click on it, with the result showing up in a
new window.
For example:
Flash->Php: Give me data items: A, B,C
Php->Flash (in XML format):A=123, B=456, C=789, ...(additional rows)
Shown in Datagrid:
"Values for A" "Values for B" "Click to see C's Value"
123 456 XXX (clickable link)
When the user clicks on XXX, it sends a request to a third party
site, which takes the 789 as an argument, and brings up info on 789
(i.e. www.thirdparty.com?x=789)
Of course, all the rows for the C column in the datagrid would act
similarly.
Any suggestions on how I can do this?