I want to open an local HTML
in case you have no internet connection and Loadfinished(bool)
property is false.
I have my HTML
file in resource file called icons.grc
in which the path is /html/error.html
When I use the load(QUrl())
function to load the HTML
, only blank page is visible. Although the loadfinished()
property is true which means it was loaded without any problem.
my code on loading the local url
view->load(QUrl("/html/error.html"));
Any suggestions?