ParamQuery grid support forum
General Category => Bug Report => Topic started by: WTC_User on October 13, 2017, 07:19:10 pm
-
Every time that I invoke the fullscreen of an element inside a detail row, the table refresh itself and the preview will close!
For the fullscreen mode in chrome you have to run for example :
document.querySelector('.detail').webkitRequestFullscreen()
where document.querySelector('.detail') is the element to expand.
for more info about Fullscreen see here: https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API
-
Can you please provide more details as to what kind of element is inside the detail rows which are trying with Fullscreen API.
It would be great if you share a jsfiddle.
-
http://jsfiddle.net/pztgcy2q/1/
Here there is a simple example...you have to run it on Google Chrome, expand a row and click the text inside the detail.
-
Any news in this front?
We need to have a solution because we must release the new version of the product next week!!
-
Please use this patch.
//patch.
(function($) {
var fn = $.paramquery.pqGrid.prototype,
_onResize = fn.onWindowResize;
fn.onWindowResize = function() {
var isFullScreen = document.fullScreen ||
document.mozFullScreen ||
document.webkitIsFullScreen ||
(window.innerHeight == screen.height);
if( !isFullScreen ){
return _onResize.apply(this, arguments);
}
}
})(jQuery)
http://jsfiddle.net/vdyqc4r6/
-
ok! it works