android - Implement list views with multiple columns -


i have implement iphone application in jquery mobile , phone gap

using list views can implement normal table views, nested table views.

<ul data-role="listview" data-inset="true" class="ui-listview">                         <li data-role="list-divider">location</li> <!-- section header -------->                           <li>primary</a></li>                         <li>primary </li>                         <li>secondary</a></li>                         <li>secondary</li>                      </ul> 

but these have 1 column, multiple in rows.

now need create table (list view) multiple columns.

enter image description here

how can create list view multiple columns?

try this,i hope work......

<ul> <li> <!--first item --> <table>     <tr>         <td>heading1</td>         <td>meaning1</td>     </tr>     <tr>         <td>heading2</td>         <td>meaning2</td>     </tr>     <tr>         <td>heading3</td>         <td>meaning3</td>     </tr> </table> </li> <li> <!-- second item --> <table>     <tr>         <td>heading1</td>         <td>meaning1</td>     </tr>     <tr>         <td>heading2</td>         <td>meaning2</td>     </tr>     <tr>         <td>heading3</td>         <td>meaning3</td>     </tr> </table> </li> </ul> 

there link wich contain info


Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -