I'm working on a tableView application in Titanium. In which I need to display data in two sections.
In section 1 I want to display the cell seperator and in section 2 I don't want any cell seperator.
I can use seperator style propery of tableview to remove the seperator style like:
separatorStyle: Titanium.UI.iPhone.TableViewSeparatorStyle.NONE,
But my issue is it'll remove cell seperator from entire tableView. But I don't want that, I need seperator in Section 1.
The tableView is something like:

Is this possible to achieve ? or I need to customize the second section with a single Row and add separate labels to it ?