Hey,
We are trying to show soem charts on top of a live video in a siliverlight application. We are using XAMHtmlViewer from infragestics for dispalying the video, as we have a url that renders the vedio in the browser. We are using rad chart controls to render the charts though.
The problem is that, the video always shows on top of the graphs. We have tried setting the z-index and opacity of the graphs and the XAMHtmlViewer, but its not helping.
Can you help us please to resolve this issue. We have already invested a lot of time in this with no luck.
Thanks and regards,
sanjeev mishra
s.mishra@prowareness.nl
I have a Silverlight datapicker that gets blocked behind the xamlHtmlViewer .
Using HTMLDocument, I was able to get a reference to this HTML DIV tag to change some of the attributes of the xamlHtmlViewer (position, filter, opacity, width, display, etc), but when I attempted to change the z-index, it didn't work.
elem.SetStyleAttribute("z-index", "1");
I can change the opacity of the xamlHtmlViewer to see my datapicker, but I can't pick any of the dates as the xamHtmlViewer is still basically on top.
The only workaround was setting the visibility to collapsed on a CalendarOpened event and show the xamlHtmlViewer on a CalendarClosed.
The xamHtmlViewer simply positions a standard HTML DIV on top of the Silverlight object so it will always have a higher z-index than the Silverlight appliuation.
Devin