I have just ventured into the world of the client API. I have a table with a hyperlink column which when clicked will launch a dialog window. I need to be able to pass a parameter to the dialog from the ID column of the row in which the hyperlink was clicked. For example - If I click the link on row 4 of the table, I need to pass the value of the ID column of row 4 to the dialog window.
My question is - how do I retrieve the ID from the current row using client API?
I have the code below which iterates through all the rows, I need to locate a single row.
Thank you in advance for any help / advice.var table = $eb.getTable("TABLE1");
var iter = table.getRows();
while(iter.next())
{
alert(table.getColumn("ID_COLUMN"));
}