Staffan, I fixed the sideways scrolling issue and reposted the package. If you don't want to bother re-downloading the package, I changed line 28 of spreadsheetuploadermodal.css from 'overflow-x:hidden;' to 'overflow-x:auto;' Let me know if that fixes your issue.
I think adding a button to be able to expand the window is a great idea. I don't know when I'll get to adding that feature, but the code below should automatically resize the popup to 100% wide when you open it. You can place this in the selectTRs.js file. I would place it at the top, but inside the jquery call (line 2).
Scroll sideways when you edit large spreadsheets
It must be able to scroll sideways when edit large spreadsheets. Is it possible to fix it?
Staffan, I fixed the sideways scrolling issue and reposted the package. If you don't want to bother re-downloading the package, I changed line 28 of spreadsheetuploadermodal.css from 'overflow-x:hidden;' to 'overflow-x:auto;' Let me know if that fixes your issue.
Perfect, it was exactly what I wanted!
//Staffan
Is there a possibility to make editing popup window wider or even be able to choose fullscreen?
//Staffan
I think adding a button to be able to expand the window is a great idea. I don't know when I'll get to adding that feature, but the code below should automatically resize the popup to 100% wide when you open it. You can place this in the selectTRs.js file. I would place it at the top, but inside the jquery call (line 2).
Let me know if that works for you!
-Tyler
I only added #'top': '40px'" to get the popup to place a little nicer (I think) but I am quite satisfied, thank you very much!!!
$(window.parent.document).find(".umbModalBoxIframe").css({ 'width': '100%', 'margin': '0 auto' }); $(window.parent.document).find(".umbModalBox").css({ 'width': '100%', 'left': '0', 'top': '40px' });
is working on a reply...