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

Best way to create complex form with multiple tabs(horizontal)

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

    Best way to create complex form with multiple tabs(horizontal)

    Best way to create complex form with multiple tabs(horizontal)-
    Shall we use flying genie(but it does not create complex large data entry form-it does create dynamic grids).

    So for functionality complex forms I am thinking of using formview control or UX(we do not have a need to have form work on iphone(ipad and web browser is fine).

    I need fastest and less coded way to create complex entry forms based on multiple sql tables.

    For example 3 tabs will contains

    Proposal tab form- name, multiple date columns, customer lookup, currency dropdown, few other lookups
    Pricing- proposed pricing grid(top grid will have grid/list that will let use choose multiple products and those will get into proposed prices grid where user will enter proposed prices
    Summary tab- showing all data entered in first 2 tabs in readonly mode.

    I need smartest way to create forms(not grids)

    #2
    Re: Best way to create complex form with multiple tabs(horizontal)

    i am thinking at least to start,
    design a single ux/dialog and add all the textbox controls that go in the first page - cover this with a frame
    then add an embeded object and another one - the first one will have the main grid, the second will have the proposal grid - cover this with a frame
    then create another embedded object that will hold the resulting grid & other data - cover this with a frame

    note all the grids should be created before they can be embedded,
    for the frames 1 & 2 remove the break after, leave it in for the third.
    then add any buttons you want.
    that should get you started.

    edit:
    if you want to display a control from page one in the third page and the control name is "Last_Name" the ux/dialog won't allow you to have two controls with the same name, so you make up a name for the third page control like Last_name_copy ( an unbound control) and copy the content from page 1 to page 3 using setValueFrom action on the onChange event of the first control.
    Last edited by GGandhi; 03-23-2017, 06:16 AM.
    thanks for reading

    gandhi

    version 11 3381 - 4096
    mysql backend
    http://www.alphawebprogramming.blogspot.com
    [email protected]
    Skype:[email protected]
    1 914 924 5171

    Comment


      #3
      Re: Best way to create complex form with multiple tabs(horizontal)

      Thanks Gandhi!
      I also need grids to look good on Ipad(responsive) like
      http://demos.telerik.com/kendo-ui/grid/index (columns adjust when on ipad/iphone size)

      I also do not want to use list control as it does not have all features of grid.

      Comment


        #4
        Re: Best way to create complex form with multiple tabs(horizontal)

        Hi Amit,

        Here is good video to start. Absolutely smartest way and not too complex.
        One of the best videos of building forms. Enjoy!

        Comment


          #5
          Re: Best way to create complex form with multiple tabs(horizontal)

          Thanks!

          Now I saw there is one good bootstrap css
          https://v4-alpha.getbootstrap.com/ I have seen few videos but I do not know how to import external css and apply to the grid.
          This way even grids of alpha will be come responsive!!

          Comment


            #6
            Re: Best way to create complex form with multiple tabs(horizontal)

            Hi Amit,

            First forms and now grids. What to say. You are fast!
            You did mention Kendo. Maybe you could use Kendo Core forms and make them look like grids!

            Comment


              #7
              Re: Best way to create complex form with multiple tabs(horizontal)

              Hi Kenneth,

              My goal is to eliminate all code used using kendo and alpha grids are awesome except responsiveness...
              I think if someone spends time to apply bootstrap alpha grids can be responsive!gridcss.png

              Comment


                #8
                Re: Best way to create complex form with multiple tabs(horizontal)

                If you need to run it in ipad then UX is better for mobile. If web browser is enough then grid. I do not think anyone will integrate Bootstrap to Alpha grid. I think you should first Mockup your application and then decide how you do it and what you need for it.

                So are you building forms or grids. That is still unclear to me.

                Comment


                  #9
                  Re: Best way to create complex form with multiple tabs(horizontal)

                  I need to quickly build(RAD) an application with grids using flying genie(not a list-suggested workaround) that works great on desktop browsers and also on ipad. Grids will have 7+ columns and with kendo you can adjust the width but in alpha I am not able to. In my application there will be multiple grids(export, paging, search), we do not need iphone as grids are large.

                  Comment


                    #10
                    Re: Best way to create complex form with multiple tabs(horizontal)

                    I almost made it working! I am close now...
                    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
                    <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
                    <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
                    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>

                    Comment


                      #11
                      Re: Best way to create complex form with multiple tabs(horizontal)

                      Very responsive. So what is now total size of your js + css files. Maybe new record.

                      Comment


                        #12
                        Re: Best way to create complex form with multiple tabs(horizontal)

                        I just kep now this one
                        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous"> and now my grid adjusts to ipad!! by just replacing grid top css with . table. The size is small as I will be using minified one...

                        https://www.w3schools.com/bootstrap/...rap_tables.asp

                        Comment


                          #13
                          Re: Best way to create complex form with multiple tabs(horizontal)

                          Very impressed. Obviously the form video helped.

                          Comment


                            #14
                            Re: Best way to create complex form with multiple tabs(horizontal)

                            responsive grid using css- https://css-tricks.com/responsive-data-tables/

                            responsive.pngresponsive1.png

                            Comment

                            Working...
                            X