• Login
sketchucation logo sketchucation
  • Login
πŸ€‘ SketchPlus 1.3 | 44 Tools for $15 until June 20th Buy Now

WebDialog help - hide scrollbars

Scheduled Pinned Locked Moved Developers' Forum
31 Posts 7 Posters 5.7k Views 7 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    chrisglasier
    last edited by 19 Oct 2009, 08:38

    Thanks Thomas. BTW I think it therapeutic to use a STRICT doctype then abuse it by doing something non-standard - appeals to cynical Brits like me!

    With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

    1 Reply Last reply Reply Quote 0
    • T Offline
      thomthom
      last edited by 19 Oct 2009, 08:45

      @chrisglasier said:

      Thanks Thomas. BTW I think it therapeutic to use a STRICT doctype then abuse it by doing something non-standard - appeals to cynical Brits like me!

      It's make the standard conformant me twitch. x_X

      Thomas Thomassen β€” SketchUp Monkey & Coding addict
      List of my plugins and link to the CookieWare fund

      1 Reply Last reply Reply Quote 0
      • T Offline
        thomthom
        last edited by 19 Oct 2009, 08:51

        Ah!
        There is a standard conformant way!

        html
        {
          overflow; hidden;
        }
        

        When removing scoll="no" and adding that to the CSS the scrollbars disappeared in STRICT mode.

        Armed with that, you could sub-class the Webdialog class and tap into it's .new method and pass on the scroll argument to the webdialog when it's ready. Unless you're fine with just having it defined in the CSS and ignore the Ruby argument.
        I was going to make a wrapper for myself, that took care of the matter where the size is only being read the first time it's created. At the moment, if you try to change the size arguments for a non-resizable webdialog they won't take effect unless you purge the saved settings.

        Thomas Thomassen β€” SketchUp Monkey & Coding addict
        List of my plugins and link to the CookieWare fund

        1 Reply Last reply Reply Quote 0
        • C Offline
          chrisglasier
          last edited by 19 Oct 2009, 09:20

          Good and noted! And used here.

          With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

          1 Reply Last reply Reply Quote 0
          • T Offline
            thomthom
            last edited by 19 Oct 2009, 09:33

            I don't know why I didn't try that before. I know that when switching between STRICT and quicks the behaviour of HTML and BODY changes.
            Glad we finally worked it out.

            Thomas Thomassen β€” SketchUp Monkey & Coding addict
            List of my plugins and link to the CookieWare fund

            1 Reply Last reply Reply Quote 0
            • T Offline
              thomthom
              last edited by 19 Oct 2009, 10:44

              @newone said:

              One more thing: JS statement element.selected = true; did not worked on my native SU instalation. After I updated my Internet Explorer from 6 to 7, it did worked... how is this possible, because in SU I still have IE4 ?

              You don't have IE4 in SU. You have whatever is installed on the system.
              That's one of the reason I would prefer is SU used a standalone web-frame that isn't linked to the system.

              Thomas Thomassen β€” SketchUp Monkey & Coding addict
              List of my plugins and link to the CookieWare fund

              1 Reply Last reply Reply Quote 0
              • N Offline
                NewOne
                last edited by 19 Oct 2009, 11:46

                @thomthom said:

                You don't have IE4 in SU. You have whatever is installed on the system.
                That's one of the reason I would prefer is SU used a standalone web-frame that isn't linked to the system.

                Please run this.

                
                @my_dialog = UI;;WebDialog.new('Check Version', false,"",400, 100, 300, 300, true)
                
                html = '<html>
                <body>
                
                <script type="text/javascript">
                var browser=navigator.appName;
                var b_version=navigator.appVersion;
                var version=parseFloat(b_version);
                
                document.write("Browser name; "+ browser);
                document.write("<br />");
                document.write("Browser version; "+ version);
                </script>
                
                </body>
                </html>'
                
                @my_dialog.set_html(html)
                
                @my_dialog.show{}
                @my_dialog.bring_to_front
                
                

                IE version.png

                1 Reply Last reply Reply Quote 0
                • T Offline
                  thomthom
                  last edited by 19 Oct 2009, 12:13

                  You can't rely on navigator.appVersion. Since IE4 and up it has always reported 4 for legacy support reasons. You must parse the navigator.userAgent string.
                  http://javascript.gakaa.com/navigator-appversion.aspx

                  JavaScript - Browser detect

                  favicon

                  (www.quirksmode.org)

                  Thomas Thomassen β€” SketchUp Monkey & Coding addict
                  List of my plugins and link to the CookieWare fund

                  1 Reply Last reply Reply Quote 0
                  • N Offline
                    NewOne
                    last edited by 19 Oct 2009, 16:13

                    If so, why does it renders buttons so old-way? 😞

                    1 Reply Last reply Reply Quote 0
                    • T Offline
                      thomthom
                      last edited by 19 Oct 2009, 16:18

                      IE is quick to do weird stuff to form control. In general - form controls in any browser is unpredictable.

                      If it'd been rendering like IE4 it would be permanently stuck in Quicks mode. Standard mode in IE wasn't introduced until IE6.

                      Thomas Thomassen β€” SketchUp Monkey & Coding addict
                      List of my plugins and link to the CookieWare fund

                      1 Reply Last reply Reply Quote 0
                      • Dan RathbunD Offline
                        Dan Rathbun
                        last edited by 1 Nov 2009, 17:34

                        @newone said:

                        If so, why does it renders buttons so old-way?

                        Sometimes Standards Compliant mode on MSIE turns MS Common Controls back to the old 'unthemed' set (they look like old Win 3.x ugly controls.)

                        See my post in the other WebDialog thread for a META tag that goes in the HEAD section.
                        Sometimes it can turn the 'XP themed' ver 6 controls back on.
                        I don't know if they work in Strict mode, but the tag should work for Tranistional mode.

                        http://forums.sketchucation.com/viewtopic.php?f=180&t=22698#p196706

                        I'm not here much anymore.

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 2 / 2
                        • First post
                          Last post
                        Buy SketchPlus
                        Buy SUbD
                        Buy WrapR
                        Buy eBook
                        Buy Modelur
                        Buy Vertex Tools
                        Buy SketchCuisine
                        Buy FormFonts

                        Advertisement