3.2.0

New popup window populated with row data link in first column

I've been all over the forum and documentation...I can't figure out how to pull data from columns 1 2 and 3 in each row, link it to the text in column 1, and when the link is clicked have it display a popup window with the data in said columns 1 2 and 3. any ideas?
Max Freeman
March 12,
http://www.activewidgets.com/javascript.forum.22203.1/new-popup-window-using-a.html
Alex (ActiveWidgets)
March 13,
I should have been more specific by posting some code...sorry...

The above post is great if we need to create a new window with a simple link, or if you want to populate a link with data from the grid but i'm also looking to post data from the grid in that new window...

here's a modified version of the code from the above linked post that i think will give a better idea about what i'm trying to accomplish:

var myLinks = function(column, row){ 
        return ("http://www.anysite.com/newwindowtext.html" + this.getCellText(0, row) + " " + this.getCellText(1, row) );
    } 

    obj.setCellLink(myLinks, 0); 
    obj.setCellTemplate(linkTemplate, 0);


should i be using something closer to "window.open"?
is there a way to call a blank html page and post data from the grid to it?

sorry for the confusion, and thank you so much for the great AW application!

seattle wa
March 14,
var myLinks = function(column, row){
return ("http://www.anysite.com/newwindowtext.html" + this.getCellText(0, row) + " " + this.getCellText(1, row) );
}

obj.setCellLink(myLinks, 0);
obj.setCellTemplate(linkTemplate, 0);

November 13,

This topic is archived.

See also:


Back to support forum