AW.Templates.Cell does not reflect setting window.status to blank
Hi
I am using AW 2.0.1.In order to implement anchors on some columns that allow user to click and open new window, I am doing the following
obj.setCellTemplate(new AW.Templates.Link,0);
obj.setCellLink(function(column, row){
if(column==0) {
window.status='';
return "javascript:launchURL('"+this.getCellText(column, row)+"',"+row+")"; }
else return '';
}, 0);
/****** lauches a URL given the fundId *****/
function launchURL(fundId,row) {
var url;
if((row%2)==0){
url="http://www.google.com/search?hl=en&q="+fundId;
}
else {
url="http://www.morningstar.co.uk/quickrank/default.aspx?search="+fundId;
}
window.open(url);
}
The window.status does not change the status to blank on moving mouse over the Link Cell.Even I have tried with onCellMouseOver Event.
Please help me .
Thanks
Vikramaditya Garg
I am using AW 2.0.1.In order to implement anchors on some columns that allow user to click and open new window, I am doing the following
obj.setCellTemplate(new AW.Templates.Link,0);
obj.setCellLink(function(column, row){
if(column==0) {
window.status='';
return "javascript:launchURL('"+this.getCellText(column, row)+"',"+row+")"; }
else return '';
}, 0);
/****** lauches a URL given the fundId *****/
function launchURL(fundId,row) {
var url;
if((row%2)==0){
url="http://www.google.com/search?hl=en&q="+fundId;
}
else {
url="http://www.morningstar.co.uk/quickrank/default.aspx?search="+fundId;
}
window.open(url);
}
The window.status does not change the status to blank on moving mouse over the Link Cell.Even I have tried with onCellMouseOver Event.
Please help me .
Thanks
Vikramaditya Garg
Vikramaditya Garg
August 29,