The javascript is used on a sub-page:
var browser = navigator.appName;
method rowOver(whichRow)
{
if (browser == "Microsoft Internet Explorer"
{
whichRow.style.background="#EFE48E";
}
}
method rowOut(whichRow)
{
if (browser == "Microsoft Internet Explorer"
{
whichRow.style.background="";
}
}
And then the following code is in the dataview's rowGenerateBegin:
AgpTag row = (AgpTag) evt.getArgument();
row.setProperty("onMouseOver","Page.rowOver(this)"
;
row.setProperty("onMouseOut","Page.rowOut(this)"
;
This combination highlight each row of the Dataview when the user moves the mouse over it. It works great on a stand alone page, but
not when that page becomes a sub-page.
Anybody have any clues what I need to do to make it work if it is a subpage?
Thanks in advance
Kirk
var browser = navigator.appName;
method rowOver(whichRow)
{
if (browser == "Microsoft Internet Explorer"
{
whichRow.style.background="#EFE48E";
}
}
method rowOut(whichRow)
{
if (browser == "Microsoft Internet Explorer"
{
whichRow.style.background="";
}
}
And then the following code is in the dataview's rowGenerateBegin:
AgpTag row = (AgpTag) evt.getArgument();
row.setProperty("onMouseOver","Page.rowOver(this)"
row.setProperty("onMouseOut","Page.rowOut(this)"
This combination highlight each row of the Dataview when the user moves the mouse over it. It works great on a stand alone page, but
not when that page becomes a sub-page.
Anybody have any clues what I need to do to make it work if it is a subpage?
Thanks in advance
Kirk