Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Staffan 11 posts 51 karma points
    Aug 08, 2013 @ 23:55
    Staffan
    0

    Scroll sideways when you edit large spreadsheets

    It must be able to scroll sideways when edit large spreadsheets. Is it possible to fix it?

  • Tyler Brown 62 posts 209 karma points
    Aug 09, 2013 @ 20:46
    Tyler Brown
    0

    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.

  • Staffan 11 posts 51 karma points
    Aug 09, 2013 @ 21:11
    Staffan
    0

    Perfect, it was exactly what I wanted!

    //Staffan

  • Staffan 11 posts 51 karma points
    Aug 09, 2013 @ 21:42
    Staffan
    0

    Is there a possibility to make editing popup window wider or even be able to choose fullscreen?

    //Staffan

  • Tyler Brown 62 posts 209 karma points
    Aug 09, 2013 @ 22:35
    Tyler Brown
    0

    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).

    $(window.parent.document).find(".umbModalBoxIframe").css({
    'width': '100%',
    'margin': '0 auto'

    });

    $(window.parent.document).find(".umbModalBox").css({
    'width': '100%',
    'left': '0'

    });

    Let me know if that works for you!

     

    -Tyler

  • Staffan 11 posts 51 karma points
    Aug 10, 2013 @ 01:30
    Staffan
    0

    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' });

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies