Skip to content
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.

Commit

Permalink
Added documentation for overflow fixed button
Browse files Browse the repository at this point in the history
  • Loading branch information
David Wu committed Apr 30, 2013
1 parent 6da82ea commit 1379d50
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,23 @@ To create an __action overflow__ menu, create a panel ```data-role="panel"``` wi
</ul>
</div>
```
To add an __action-overflow fixed button__ to the __action overflow__ menu, add a new ```div``` with ```data-role="fixedpanelbutton"```
Adding this to the previous example would look like the following:

```
<div data-role="panel" data-position="right" data-display="overlay" data-theme="a" class="bb10-panel">
<ul data-role="listview" data-theme="a">
<li><a href="#">Acura</a></li>
<li><a href="#">Audi</a></li>
<li><a href="#">BMW</a></li>
</ul>
__<div data-role="fixedpanelbutton">
<ul data-role="listview" data-theme="a">
<li><a href="#">Delete</a></li>
</ul>
</div>__
</div>
```

A complete example of the overflow menus can be found [here](/kitchenSink/actionbar_sample.html).

Expand Down

0 comments on commit 1379d50

Please sign in to comment.