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

date Picklist on Mobile

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

    date Picklist on Mobile

    I have a date field in a UX setup to open the calendar picklist when you click the icon.

    But when you do so, the calendar that comes up is larger than the screen AND it doesn't scroll.

    Part of the problem is that the calendar is coming up UNDER the date field, which further limits it's screen real estate.

    I am using a standard panelcard with a menu. The CSS is IOS7.

    Am I missing a setting somewhere?

    dateissue.PNG

    #2
    Re: date Picklist on Mobile

    This is where you should be using a FormView control with an Editor-DateSpinLists editor. These were designed for mobile use... whereas the web controls do not always play nice with mobile devices and soft keyboards.

    You could also use the ControlBar with a Disclosure which slides into view once your control gets focus or you tap a button (or something) to edit your date field.

    Comment


      #3
      Re: date Picklist on Mobile

      I setup a sample formview (the default one in the UX setup.)

      I like somethings about it, but I really dislike the date control.

      It is hard to see what date is actually selected and on my screen it is not lining up properly. (see pic)

      As you can see, it seems to be spanning two items for each spinlist. In the month, for instance, both May and June are in bold.

      Are people using it like this? Are there some CSS hacks I can do to make it better?

      spinlistmonth.PNG

      Comment


        #4
        Re: date Picklist on Mobile

        You can style the control. In the FormView CSS, CSS defined at the UX component level, or in the UX CSS Definitions (same thing) you could add something like...

        Code:
        .spinList {
        	display:inline-block;
        	text-align:center;
        	color:red;
        }
        .spinList:after {
            -webkit-border-before-color: green;
            -webkit-border-after-color: green;
        }
        In your posted image, since there is no selection, they do kinda look the same, but they are a tiny bit different. As soon as you make a selection, your selection is bolder.

        Comment


          #5
          Re: date Picklist on Mobile

          But you don't make a selection, you spin the list until you come to the value you want. Perhaps if you make a selection, then leave and come back it looks better, but for the most part, people are going to pick a date and leave it at that.

          This control would be better if you could spin it, then click your selection and be done with it.

          Comment


            #6
            Re: date Picklist on Mobile

            Also,

            Is there a way to put the three spinlist controls next to each other instead of up and down?

            I changed all of their widths to 30% AND I reduced the space between controls to 0 px. So they should have plenty of room to move horizontal instead of vertical, but they do not.

            I even went to 25%, and still they do not move.

            Comment


              #7
              Re: date Picklist on Mobile

              Did you not apply the css I posted? The display:inline-block; does that.

              Comment


                #8
                Re: date Picklist on Mobile

                Originally posted by lgrupido View Post
                Also,

                Is there a way to put the three spinlist controls next to each other instead of up and down?

                I changed all of their widths to 30% AND I reduced the space between controls to 0 px. So they should have plenty of room to move horizontal instead of vertical, but they do not.

                I even went to 25%, and still they do not move.
                Hi Larry,

                Take a look at the SpinListGroup Container: https://www.alphasoftware.com/docume...up%20container

                I think this will do what you want.
                Sarah Mitchell
                Director of Customer Success | [URL="https://www.alphasoftware.com"]Alpha Software Corporation[/URL]
                [B]Get in the know! [/B] Join us for our Weekly Webinars: [URL="https://www.alphasoftware.com/weekly-transform-tuesday-webinar"]TransForm Tuesday[/URL] and [URL="https://www.alphasoftware.com/weekly-alpha-anywhere-overview-webinar"]Wednesday's Alpha Anywhere Demo and Q&A[/URL]
                Connect with us: [URL="https://www.instagram.com/alpha_software_corp/"]Instagram[/URL] | [URL="https://twitter.com/AlphaSoftware"]Twitter[/URL] | [URL="https://www.facebook.com/AlphaSoftware/"]Facebook[/URL] | [URL="https://www.linkedin.com/company/alpha-software"]LinkedIn[/URL] | [URL="https://www.youtube.com/user/AlphaSoftwareInc"]YouTube[/URL]

                Comment


                  #9
                  Re: date Picklist on Mobile

                  Hey Sarah,

                  Adding the Defined Control "Editor-DateSpinLists" to a FormView control automatically adds the SpinListGroup Container. However, the css Display:Inline-block; is missing from this process. It's this css that gives you the horizontal effect.

                  Oddly enough... if you add 3 SpinList controls to a new UX with a UX Style of iOS, iOS7, or Alpha (the only styles I've tested), and then add the SpinListGroup Container, the SpinList controls are still positioned vertically. Now... change the UX Style from iOS to iOS7 or Alpha and re-render. The SpinList controls are now horizontal. Recalculating controls has no effect on this process.

                  Unfortunately, changing the UX Style when working with a FormView control... or an Editor... (not sure which) has no positive effect on the SpinList controls.

                  You'll see in the attached UX (one of the UX Templates to which I've added a Date Field and Data to the List control) that the SpinListGroup container is present... yet the SpinList controls are vertical.

                  I'm working with the current pre-release 4292.

                  EDIT: I had an extra container inside the SpinListGroup for testing... removed now. The extra container had no effect.
                  Attached Files
                  Last edited by Davidk; 04-24-2017, 08:07 PM.

                  Comment


                    #10
                    Re: date Picklist on Mobile

                    I knew I'd worked on the SpinList control before... just could find it earlier. I had found the same... that the "selected" SpinListItem wasn't as distinct as I wanted it to be. I couldn't find a nice CSS way to change it, so I brute-force changed it. If you're going to use the SpinList controls and are interested, I'll post the process.

                    SpinListStyle.PNG

                    Comment


                      #11
                      Re: date Picklist on Mobile

                      I am not working with the latest release, mine if from Jan 30.

                      But I discovered that my CSS was outdated.

                      Even when I updated it with the latest CSS from Jan 30, it's not making any difference.

                      And I do have a spinlist group and I added the suggested CSS - it is making no difference.

                      Are you saying I have to change from IOS7 to IOS, then save and upload, then change it back to see results?

                      Comment


                        #12
                        Re: date Picklist on Mobile

                        I was actually working with the Alpha Style. For iOS7, things are different... and it's actually doesn't look very good. Almost seems as if the iOS7 Style and the SpinList control don't work well together.

                        However, this is the css for the iOS7 Style:

                        Code:
                        .iOS7SpinList {
                        	display:inline-block;
                        	text-align:center;
                        	color:red;
                        }

                        Comment


                          #13
                          Re: date Picklist on Mobile

                          There one's more bit, it seems... padding is off under iOS7. It needs to be set to 0px.

                          Code:
                          .iOS7SpinList {
                          	display:inline-block;
                          	text-align:center;
                          	color:red;
                          	padding:0px;
                          }

                          Comment


                            #14
                            Re: date Picklist on Mobile

                            I switched to the Alpha Style and it does look better.

                            Comment


                              #15
                              Re: date Picklist on Mobile

                              David,
                              I would love to see the process for the Alpha style...thanks!

                              Comment

                              Working...
                              X