Hi,
please check
this post.
You can also use the
addField method to place the correct link in the table.
All the suggested method are used in a context where the item and its values are well known so that you can place the correct link.
e.g. if you want to add the
stocklist demo's popup-links to the
portfolio demo you could simply add this to the onChangingValues callback (obviously in this case setPushedHtmlEnabled must be true and openPopup must exists):
[syntax="JS"]
var name = visualUpdateInfo.getFormattedValue("stock_name");
if (name != null) {
var key = visualUpdateInfo.getServerValue("key");
var link = "<a href='#' onclick='openPopup(\""+key+"\");return false;'>";
visualUpdateInfo.setFormattedValue("stock_name",link+name+"</a>");
}[/syntax]
Please, composing your links keep also in mind
this thread.