Can Qt's QWebView display programmatically generated XML?
Using Qt 4.6, I can dynamically add to an HTML page like this:
ui->webView->page()->mainFrame()->documentElement().findFirst("body").appendInside("<i>some text</i>\n");
However, if I QWebView::load() an XML file, it displays it with the correct CSS styling (from an processing instruction), but doesn't show any changes when I do something like:
ui->webView->page()->mainFrame()->documentElement().findFirst开发者_如何学编程("lines").appendInside("<line>hello</line>\n");
Why is it treating them differently, and is there a way to modify an XML document in the same way I can an HTML one?
Try using setUrl() rather than load(). If that magically works it's a bug.
精彩评论