Subview in datatable not scrolling horizontally

Hello,

I have a subview in a datatable that shows information of the select row. On a mobile device the datatable scrolls fine but the subview does not scroll horizontally. Here’s my datatable code:

{view:"datatable",
 localId:"Items",
 subrow:"#Item_Help# #Vendor_Help#", 
 subRowHeight:"auto", 
 columns:colDefs, 
 select:"row",
 editable:true, 
 rowHeight:25,
 resizeColumn:true,
 minHeight:150, 
 subview:{view:"form",
		borderless:true, 
		margin:0,
		padding:0,
		elements:[	{cols: [
				 {view:"textarea",
				id:"subrow_iteminfo",
				name:"Item_Help",
				label:"Item Info",
				width:450,
				height:150, 
				labelWidth:100, 
				labelPosition:"top"
				},
				{view:"textarea",
				id:"subrow_vendorinfo",
				name:"Vendor_Help",
				label:"Vendor Info",
				width:450,
				height:150,
				labelWidth:100,
				labelPosition:"top"
				},
				]},
		]
  }
}

I’ve tried a few thing like setting scroll:true in the subview form but that did not work.
What combination of proerties do I need to allow the subview to scroll horizontally in a mobile device?

Thank you,
Pieter

I see that my code indentation did not come thru when I pasted in my code. Sorry about that.

Hello,
Please note that scroll: true enables vertical scroll.
If you need horizontal scroll you can addscroll: x
In your example, you set the static width for textarea, therefore, in order for the scroll to appear, you need to set the width of the form less than the total width:
https://snippet.webix.com/53jns7gp

Thanks for the response,

Its not working on a mobile device for me. I’m running it on an android phone in chrome. The subview won’t scroll even with the settings you indicated. The datatble scrolls fine.

@Pieter,
Could you specify the:
1 Webix version
2 Android version
Scroll works fine in the version 7.1 of Webix on Android Pie with the latest Chrome.

We’re on webix 5 and are in the process of upgrading to 7.
Under Android version on the phone is says 7.0
I’ll try again once we have webix 7 installed for our mobile application.
I’ll let you know if that will fix it.

Thank you,
Pieter

Follow up:

Upgrading to webix 7 fixed the scrolling issue!