:: Forum >>

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
Vikramaditya Garg
Tuesday, August 29, 2006
In IE in the Option Security Tab you have to enable the option 'allow script to change the statusbar'.
Eric Aarts
Tuesday, August 29, 2006
Hi

window.status is working other area of grid cell .Only cells where the template is AW.Templates.Link is not allowing us to show

window.status="" on the browser status bar

Please suggest us a fix for the same.
Vikramaditya Garg
Thursday, August 31, 2006

This topic is archived.


Back to support forum

Forum search