I have a requirement where I have to show specifically three button groups in a row, and if it has more buttons then it should be moved to next row. These should happen dynamically, as the data value will be coming from the server.
Here is the sample Kendo Mobile's ButtonGroup code
<ul data-role="listview" data-type="group">
<li>
Default ButtonGroup
<ul>
<li>
<ul data-role="buttongroup" data-index="0">
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
<li>Six</li>
<li>Seven</li>
<li>Eight</li>
</ul>
</li>
</ul>
</li>
</ul>
Here every button is added to li element. When i see this on the mobile screen, I cant see seven and eight button. Here is a screen shot of it in the following link https://i.stack.imgur.com/QBmeI.png
Therefore What I want is to restrict only to 3 buttons for a row, and the following element has to fall in the next row (next three buttons) and it should continue in the similar manner.
`
– Sga Jul 09 '15 at 13:52