how the heck does table style:group actually group?

You must Login before you can answer or comment on any questions.

4 Answers

Titanium.UI.iPhone.TableViewStyle.GROUPED

is the grouped style. It's taken directly from the page you linked to, so by no means does it tell you nothing.

Example:

var table = Ti.UI.createTableView({
    style : Titanium.UI.iPhone.TableViewStyle.GROUPED,
});

Allow me to refer you to the APPLE Developer's documentation, what I like to think of as required reading for those who wish to call themselves iOS developers, regardless of what tools they use:

Table View Programming Guide

— answered 10 months ago by Stephen Feather
answer permalink
3 Comments
  • Has pictures visually explaining the terms used in some of the Appcelerator documentation. Hope that helps.

    — commented 10 months ago by Stephen Feather

  • Stephan, thanks, but my question is what property makes them sort in a logical manner header? From apple: "It allows you to separate details into conceptual groups and provide contextual information to help users understand it quickly. "

    based on the picture, the difference between the groupings is the header.

    — commented 10 months ago by matt s

  • You do, by assigning them to a particular section, based upon the criteria you determine.

    — commented 10 months ago by Stephen Feather

Hi, Using Titanium when we provide table view style as grouped i.e. Titanium.UI.iPhone.TableViewStyle.GROUPED then it will group the table view rows with your logical grouping.

Your Answer

Think you can help? Login to answer this question!