Page 1 of 1
Floorplan dashboard fullscreen
Posted: Friday 06 May 2016 20:14
by d3rax
Hello,
I've got a question about the dashboard. I have my floorplan displayed on my dashboard. When I double click on the floorplan, the 'fullscreen' version gets activated by hiding the menubar.
I would like to have a url that directly shows the dashboard without the menubar, so without having to double click the floorplan (i want to use the floorplan in Imperihome). Is this possible?
Best regards!
Re: Floorplan dashboard fullscreen
Posted: Tuesday 10 May 2016 16:07
by Dnpwwo
Currently there isn't.
If someone updated FloorplanController.js so the init function looked like this and submitted a patch:
Code: Select all
function init()
{
try {
$scope.MakeGlobalConfig();
ShowFloorplans();
if (window.location.href.search("fullscreen")>0) {
$('#copyright').css({display:'none'});
$('.navbar').css({display:'none'});
$( "#fpwrapper" ).css({position:'absolute', top:0, left:0}) .attr('fullscreen','true');
}
}
catch(err) {
generate_noty('error', '<b>Error Initialising Page</b><br>'+err, false);
}
};
then a URL like [url]http://<domoticz%20address>:8080/#/Floorplans?fullscreen[/url] would work.
I can't do it at present due to my main server suffering a hardware failure which has broken my setup.
Re: Floorplan dashboard fullscreen
Posted: Tuesday 24 May 2016 21:35
by d3rax
Hopefully it will be implemented in the future....
Re: Floorplan dashboard fullscreen
Posted: Tuesday 24 May 2016 21:37
by Egregius
You can also create your own floorplan. Perfectly made just for you.
Have a look at
https://github.com/Egregius/PHP-Custom- ... r-Domoticz to get started.
Re: Floorplan dashboard fullscreen
Posted: Sunday 29 May 2016 0:55
by Dnpwwo
This functionality has been added and should be in the next beta
Let me know if there are any issues with it
Re: Floorplan dashboard fullscreen
Posted: Wednesday 15 June 2016 22:03
by DeepB
Can you let me know in which version that was implemented? And how to use it?
thank you
Daniel
Re: Floorplan dashboard fullscreen
Posted: Saturday 18 June 2016 3:14
by Dnpwwo
Just add '?fullscreen' to the end of the URL you were using ([url]http://<domoticz%20address>:8080/#/Floorplans?fullscreen[/url]). It would have been in the beta version since mid-may.
If a stable version has been release since then it will be in that as well.