Dual cell in table view

Hi. I have table view, but i need to spare it to make 2 elements in one row. Is there any builded in option for that kind of design?

Nope. You get to do it yourself. You may want to make it modular, so instead of 2 elements you can have N elements, and adjust N based on screen size.

A row is simply a display group of X pixels wide and Y pixels high.  You can insert whatever you want into the row, including other groups and containers.  So you can build your own division in the row in your onRowRender() function.

Rob

Yes, i made this that way, but problem is that touch event don’t have .x value, so it needs another touch listener for this.

Nope. You get to do it yourself. You may want to make it modular, so instead of 2 elements you can have N elements, and adjust N based on screen size.

A row is simply a display group of X pixels wide and Y pixels high.  You can insert whatever you want into the row, including other groups and containers.  So you can build your own division in the row in your onRowRender() function.

Rob

Yes, i made this that way, but problem is that touch event don’t have .x value, so it needs another touch listener for this.