Skip to main content
Nintex Community Menu Bar

K2 Smartforms view Horizontal scroll bar

  • July 15, 2015
  • 7 replies
  • 299 views

Forum|alt.badge.img+4


 

Symptoms


The client created a list view with a lot of columns. He wants the ability to set the width of the view. If the width is bigger than the current screen size, he wants the horizontal scrollbar to appear. (In both the designer and during runtime.
 

Diagnoses


At the moment there is no OOTB functionality that will allow horizontal scroll bars to appear on a view based on certain criteria.
 

Resolution

I routed the ticket to the LABS support team for investigations and the engineer working the ticket has linked this ticket to an existing TFS item. Once implemented, you will have the ability to set the max height and width on a view. The overflow will result in scroll bars in the view.




 

7 replies

Forum|alt.badge.img+1
  • Novice
  • September 14, 2016

This post is over a year old.. has the issue been adressed?

 

Thanks.


Forum|alt.badge.img
  • October 7, 2016

We also need this feature. What is the solution?


We also need a solution for this.


Forum|alt.badge.img+2
  • November 24, 2016

Was there a soltion to this as I am bateling to get it right in the Views and form designer 


Forum|alt.badge.img+3

Do we have resolution onthis now. please let us know as its urgent


Forum|alt.badge.img+1
  • Nintex Partner
  • August 4, 2017

Hello all,

 

Maybe you want to try this temporary workaround :

https://briank2com.wordpress.com/2016/12/19/list-view-scrollbars/

 

Best regards,

 

Alex


Hi

 

Try this

<script type="text/javascript">

$( document ).ready(function() {

 

$('.view:eq(0)').css({"overflow": "scroll","width":"2000px"});  

          });

          </script>

 

It worked for me, view:eq(0) zero sepresent which view you want to put a scroll view

 

Regards

ElvisJacob