Page 1 of 1

Web Client: Scroll bar

PostPosted: Thu Oct 10, 2013 3:25 am
by ethandz
Hello all,

in table view:
if a number of records exceed y-axis screen, instead of showing the scroll bar, it shows page numbers and arrow buttons for previous or next page, How can we fix this problem?
(it was working in smart client with the same table view)

Re: Web Client: Scroll bar

PostPosted: Thu Oct 10, 2013 7:34 am
by sovanm
Hi Ethandz,

It is not a problem in fact, it is the default view of the table view in servoy web client.
If you want to show the scroll bar in case of web client, add a client property onSolutionOpen method.
Here is the code.
Code: Select all
      function onMainSolutionOpen() {
              application.putClientProperty(APP_UI_PROPERTY.TABLEVIEW_WC_DEFAULT_SCROLLABLE, true);
              // All other stuffs....
      }


Hope this will help you.
Thanks,

Re: Web Client: Scroll bar

PostPosted: Fri Oct 11, 2013 1:10 am
by ethandz
Thank you very much.

Re: Web Client: Scroll bar

PostPosted: Mon Aug 11, 2014 9:21 pm
by huber
Thanks!

Re: Web Client: Scroll bar

PostPosted: Mon Aug 11, 2014 10:15 pm
by david
Recommend keeping it simple and sticking with the default pageable version. We found the performance and UX was so subpar we ended up rolling slickgrid into Servoy. And that took a LOT of work as the current Servoy web client is a beast to hack.

Servoy 8 and the new web client should change the landscape of UI widgets.