[Mono-bugs] [Bug 375226] [windowless] On9Games - FAQ does not show answers
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed Jun 4 13:54:08 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=375226
User fejj at novell.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=375226#c2
Jeffrey Stedfast <fejj at novell.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fejj at novell.com
--- Comment #2 from Jeffrey Stedfast <fejj at novell.com> 2008-06-04 11:54:07 MDT ---
when you mouse over a question, the javascript does the following:
function (sender, eventArgs) {
var ctlFAQ = document.getElementById("divFAQ");
var objRect = sender.findName("rDetail");
sender.Foreground = "#FFFFFFFF";
objRect.Opacity = "1";
if (sender.name == "Q1") {
ctlFAQ.innerHTML = arrFAQ[0][1];
} else if (sender.name == "Q2") {
ctlFAQ.innerHTML = arrFAQ[1][1];
} else if (sender.name == "Q3") {
ctlFAQ.innerHTML = arrFAQ[2][1];
} else if (sender.name == "Q4") {
ctlFAQ.innerHTML = arrFAQ[3][1];
} else if (sender.name == "Q5") {
ctlFAQ.innerHTML = arrFAQ[4][1];
} else if (sender.name == "Q6") {
ctlFAQ.innerHTML = arrFAQ[5][1];
} else if (sender.name == "Q7") {
ctlFAQ.innerHTML = arrFAQ[6][1];
} else if (sender.name == "Q8") {
ctlFAQ.innerHTML = arrFAQ[7][1];
} else if (sender.name == "Q9") {
ctlFAQ.innerHTML = arrFAQ[8][1];
} else if (sender.name == "Q10") {
ctlFAQ.innerHTML = arrFAQ[9][1];
} else if (sender.name == "Q11") {
ctlFAQ.innerHTML = arrFAQ[10][1];
}
}
so the answer is rendered outside of silverlight in an html element.
so yea, probably a windowless issue.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list