Subscribe for automatic updates: RSS icon RSS

Login icon Sign in for full access | Help icon Help
Advanced search

Pages: [1]
  Reply  |  Print  
Author Topic: Disable auto scroll to focused field  (Read 17579 times)
Anderson P.
Posts: 82


« on: September 11, 2015, 04:40:19 pm »

Hello

In the Genero's web interface, every time a click on a button or on a folder tab the web browser automatically scroll to the focused field.

For example, I have a web interface with some statistics at the top and a folder with some input field right below. I would like to keep the scroll on the top of the page, so the statistics will be visible while the user input the data, but occurs that the browser scrolls to the inputs, even they fitting on the screen with the statistics.

I don't know if it's a browser behavior or a GWC configuration, but you guys know some way of disabling this behavior?

Thank you in advance!
.
Four Js
Posts: 65


« Reply #1 on: September 15, 2015, 04:41:20 pm »


Hi Anderson,

There can be some solutions modifying js files but it depends on the GAS version / mode you use and also your application type.
So what is your GAS version ? And can you send your program ? (or contact your support center with it if you don't want to share it here).
But let me warn you that handling focus may give some side effects, so it needs to be done carefully.

Regards,
Guney
Anderson P.
Posts: 82


« Reply #2 on: September 15, 2015, 06:24:03 pm »

Hello Guney

Thanks for your reply! Yes, i'm already in touch with our consultant for Latin America, Florencia.

We are using GAS version 2.50.29, actually the application i'm implementing is a full service desk system, so the project is a bit huge and complex for just a test case.

So, i was looking for something like a property "disable auto scroll", but as i said, actually don't know if it's a browser or a GWC behavior. I have noticed that if a keep the focus on a specific field on the top of the page, it will not scroll.
Reuben B.
Four Js
Posts: 1049


« Reply #3 on: September 16, 2015, 12:35:25 am »

Quote
...so the project is a bit huge and complex for just a test case...

I'll just comment on that, you should always be able to break a problem down to a smaller test case.  So for something like you have described, my test case would be the code at the end of this post.  The key points being a form that is taller than a screen, and an INPUT that takes you to the bottom of the screen when you want the top to remain visible.  Sometimes for a test case you can start with the code from FGLDIR/demo.  Also with simple test cases. you will sometimes find that as you prepare the test case you will find the magic line that is the difference between your production example doing what you expect and not what you expect.

Anyway sounds like you have hit upon the solution of putting a focusable field at the top of the page, my example shows a styles technique where you can make that field practically invisible.

My first thought was that you should be able to use the ui.Form.ensureFieldVisible method but as the test case shows that doesn't work in this instance.  It is designed for widgets like FOLDER to ensure a certain page is visible and AFAIK does not have ability to move scrollbars, perhaps it should ...

ensureFieldVisible.4gl
Code
  1. MAIN
  2. DEFINE field1, field2 STRING
  3. DEFINE dummy STRING
  4. DEFINE w ui.Window
  5. DEFINE f ui.Form
  6.  
  7.    OPTIONS INPUT WRAP
  8.  
  9.    MENU ""
  10.        COMMAND "Default"
  11.            OPEN WINDOW w WITH FORM "ensureFieldVisible"
  12.            DISPLAY 100 TO field1
  13.            INPUT BY NAME field2;
  14.  
  15.            IF int_flag THEN
  16.                LET int_flag = 0
  17.            END IF
  18.            CLOSE WINDOW w
  19.  
  20.        COMMAND "ui.Form.ensureFieldVisible"
  21.            OPEN WINDOW w WITH FORM "ensureFieldVisible"
  22.            LET w= ui.Window.getCurrent()
  23.            LET f= w .getForm()
  24.            DISPLAY 200 TO field1
  25.            INPUT BY NAME field2
  26.                BEFORE INPUT
  27.                    CALL f.ensureFieldVisible("formonly.field1")
  28.            END INPUT
  29.            IF int_flag THEN
  30.                LET int_flag = 0
  31.            END IF
  32.            CLOSE WINDOW w
  33.  
  34.        COMMAND "dummy"
  35.            OPEN WINDOW dummy WITH FORM "ensureFieldVisible_dummy"
  36.  
  37.            CALL ui.Interface.loadStyles("ensureFieldVisible.4st")
  38.            DISPLAY 300 TO field1
  39.            INPUT BY NAME dummy, field2
  40.                AFTER FIELD dummy
  41.                    -- Can't tab back into dummy field once exit it
  42.                    CALL DIALOG.setFieldActive("dummy", FALSE)
  43.            END INPUT
  44.  
  45.            IF int_flag THEN
  46.                LET int_flag = 0
  47.            END IF
  48.            CLOSE WINDOW dummy
  49.  
  50.            CALL ui.Interface.loadStyles("default") -- Resort to default style
  51.  
  52.        ON ACTION close
  53.            EXIT MENU
  54.    END MENU
  55. END MAIN

A stylesheet

ensureFieldVisible.4st
Code
  1. <?xml version="1.0" encoding="ANSI_X3.4-1968"?>
  2. <StyleList>
  3.     <Style name=".dummy" >
  4.      <StyleAttribute name = "fontSize" value = "1pt" />
  5.      <StyleAttribute name = "border" value = "none" />
  6.      <StyleAttribute name = "textColor" value = "transparent" />  
  7.      <StyleAttribute name = "backgroundColor" value = "transparent" />  
  8.   </Style>
  9. </StyleList>

and 2 forms

ensreFieldVisible.per
Code
  1. LAYOUT
  2. VBOX
  3. GRID
  4. {
  5. [f01          ]
  6. .
  7. .
  8. .
  9. .
  10. .
  11. .
  12. .
  13. .
  14. .
  15. .
  16. .
  17. .
  18. .
  19. .
  20. .
  21. .
  22. .
  23. .
  24. .
  25. .
  26. .
  27. .
  28. .
  29. .
  30. .
  31. .
  32. .
  33. .
  34. .
  35. .
  36. .
  37. .
  38. .
  39. .
  40. .
  41. .
  42. .
  43. .
  44. .
  45. .
  46. .
  47. .
  48. .
  49. .
  50. .
  51. .
  52. .
  53. .
  54. .
  55. .
  56. .
  57. .
  58. .
  59. .
  60. }
  61. END
  62. FOLDER
  63. PAGE
  64. GRID
  65. {
  66. [f02          ]
  67. }
  68. END
  69. END
  70. END
  71. END
  72. END
  73. ATTRIBUTES f01 = formonly.field1, NOENTRY;
  74. ATTRIBUTES f02 = formonly.field2;

ensureFieldVisible_dummy.per
Code
  1. LAYOUT
  2. VBOX
  3. GRID
  4. {
  5. Stats [f01        ][x]
  6. .
  7. .
  8. .
  9. .
  10. .
  11. .
  12. .
  13. .
  14. .
  15. .
  16. .
  17. .
  18. .
  19. .
  20. .
  21. .
  22. .
  23. .
  24. .
  25. .
  26. .
  27. .
  28. .
  29. .
  30. .
  31. .
  32. .
  33. .
  34. .
  35. .
  36. .
  37. .
  38. .
  39. .
  40. .
  41. .
  42. .
  43. .
  44. .
  45. .
  46. .
  47. .
  48. .
  49. .
  50. .
  51. .
  52. .
  53. .
  54. .
  55. .
  56. .
  57. .
  58. .
  59. .
  60. }
  61. END
  62. FOLDER
  63. PAGE
  64. GRID
  65. {
  66. [f02        ]
  67. }
  68. END
  69. END
  70. END
  71. END
  72. END
  73. ATTRIBUTES
  74. EDIT f01 = formonly.field1, NOENTRY, FORMAT="###,##&.&&";
  75. EDIT f02 = formonly.field2;
  76. EDIT X= formonly.dummy, STYLE="dummy"; -- the style minimises the ability to see the dummy field

Product Consultant (Asia Pacific)
Developer Relations Manager (Worldwide)
Author of https://4js.com/ask-reuben
Contributor to https://github.com/FourjsGenero
.
Four Js
Posts: 65


« Reply #4 on: September 16, 2015, 11:42:15 am »


Hi Anderson,

To answer your question, scrolling to focused item (I guess it's an editable field) is not a GWC specific behavior. I think you should get quite the same behavior if you run the program with GDC client. Also, you should see the same with the google homepage for example; if page height is small enough, focus and scrollbar will be set on the edit field.

Anyway, you can either modify your application to add a focused item on the top, or modify GAS js files to force it. But this needs to be carefully according to your application.

Regards,
Guney
Anderson P.
Posts: 82


« Reply #5 on: September 16, 2015, 01:11:48 pm »

Hello guys,

Thanks for the answers, agree with you Reuben, every problem can be broke down in a simple test case, and this is no exception. Your test case indeed represent the described problem, but i guess pointing the focus to a field on the top of the page is the best bet...

Actually a have an input field right on the top of the page, so i will manage the code to keep the focus on that field.
Pages: [1]
  Reply  |  Print  
 
Jump to:  

Powered by SMF 1.1.21 | SMF © 2015, Simple Machines