Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

How can I surpress Scroll Bars in my Tabbed Interface?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How can I surpress Scroll Bars in my Tabbed Interface?

    One of my tabbed panes is pretty crowded with data input "stuff". Most of the time I'm
    okay but sometimes the tabbed pane shows vertical and horizontal scroll bars which
    actually crowds my page even more.

    How can I PREVENT the scroll bars from showing, even though it may "sense" that scroll
    bars are needed. As the developer, "I" want to make that decision. I can't find
    a property that will allow me to do this yet with all the hundreds of property elements
    that A5 provides, I can't believe that this capability is not available.

    Please do not recommend that I eliminate some of the items on the page. That doesn't
    address the problem that I am trying to solve. Thanks!

    #2
    Re: How can I surpress Scroll Bars in my Tabbed Interface?

    Get the ID of the tab pane you want to affect and then you can hide the scroll bar. I have a grid displayed in a tab pane... in that Grid's onGridRender Event I put...

    Code:
    $('tbi.PANE.1.PANE').style.overflow="hidden";
    The overflow property of the Object's Style controls the scroll bars. Usually it's Auto, but you can decide what you like.

    I think overflow controls both x and y bars. overflow-x and overflow-y look after their own bars.

    Comment


      #3
      Re: How can I surpress Scroll Bars in my Tabbed Interface?

      Originally posted by Davidk View Post
      Get the ID of the tab pane you want to affect and then you can hide the scroll bar. I have a grid displayed in a tab pane... in that Grid's onGridRender Event I put...

      Code:
      $('tbi.PANE.1.PANE').style.overflow="hidden";
      The overflow property of the Object's Style controls the scroll bars. Usually it's Auto, but you can decide what you like.

      I think overflow controls both x and y bars. overflow-x and overflow-y look after their own bars.
      David,

      That was a wonderful solution but I am having one problem with it. My Tab1 is configured to open whenever the Tabbed Interface is opened. The "hidden" property works at that point. However if I call that same TAB1 from a button on the left hand side of my tabbed interface, the onDetailRender event does not seem to be called. The scroll bars reappear.

      Any thoughts on why this odd behavior?

      Comment


        #4
        Re: How can I surpress Scroll Bars in my Tabbed Interface?

        Hey Tom,

        My test TabUI wasn't opening a default tab... so I had to click a tab button from the tab menu. I put my scrollbar code into the Grid's onGridRender event. I added a 2nd tab to my test and I'm now opening Tab1 by default when the TabUI opens... The Tab1 scroll bar is gone, then I click on the 2nd tab control button and the 2nd tab opens, with a scroll bar. I click on the Tab1 tab and it displays - no scrollbar. I close Tab1, then click on the Tab1 button in the tab control to open tab1 again... no scrollbar. Not sure if it's your onDetailRender event... but try the onGridRender event. Not sure what else could be going on.

        Hold on... A5 is assigning incremental numbers to the tab panes. Your default opening tab may be 1 when it's first opened... but if closed, and re-opened... it's a different number... going to look further.
        Last edited by Davidk; 10-20-2012, 10:35 AM.

        Comment


          #5
          Re: How can I surpress Scroll Bars in my Tabbed Interface?

          Yikes... this was a bit of a nasty one... because the Pane ID keeps changing... so... you have to go after the Pane you want... figure out what it's ID is... then use that ID to hide the scroll bars.

          Thank goodness Andy Gill posted some great info here http://msgboard.alphasoftware.com/al...ghlight=tbiObj about the tab object... 'cause I just can't find any documentation on the tab object... at all.

          Anyway...

          Don't put any code into the Grid. Instead, get into your Tabbed UI and, on the Control Button where you've put your Grid, get into that Button's Tab Pane Javascript events. In the onChange event, put this...

          Code:
          var myIdx = tbiObj._tbObj._curTabIndx;
          var myID = tbiObj._tbObj._panes[myIdx]._id;
          var n=myID.lastIndexOf(".");
          var curPane = myID.substr(n+1,myID.length-n)
          $('tbi.PANE.' + curPane + '.PANE').style.overflow="hidden";
          Get the index of the tab you're on. The index is always relative to where the tab is... so that's good.
          Get the ID of that Index. The ID of the tab is always incremented. If you're working with your Tabbed UI, opening and closing tabs... for hours... you could have an ID of 100 for a 3 tab tabbed UI... wild.
          The ID will be in the form of tbi.PANE.n where n is a next consecutive number.
          Get the current Pane #
          Hide the scroll bars of the current pane #

          I would love to know how to find the docs on the tab object... all the tbiObj stuff.

          Comment


            #6
            Re: How can I surpress Scroll Bars in my Tabbed Interface?

            David,

            Thanks sooooooooooo much!

            All I can say is WOW! I would have never worked that out as "the" solution even if my life were on the line. If I go slow enough I can make some sense of what's going on in the code but "%$#$#"! How is a normal human being supposed to figure that out?
            Either the programmers at Alpha are just at such a higher playing level (compared than us) and assume this type stuff is "obvious" or they simply don't care that most of us will ever get it.

            I too wish there was some definitive guide that would expose things like the tab object but we've been wishing for such documentation for years and never seem to get it. I think the company is solely interested in making new sales by adding new features.

            Comment

            Working...
            X