Revert "Export"
[framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.1.0 / docs / toolbars / bars-fixed-events.html
1 <!DOCTYPE html> 
2 <html>
3         <head>
4         <meta charset="utf-8">
5         <meta name="viewport" content="width=device-width, initial-scale=1"> 
6         <title>jQuery Mobile Framework - Fixed Toolbars</title> 
7         <link rel="stylesheet"  href="../../css/themes/default/jquery.mobile.css" />  
8         <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
9
10         <script src="../../js/jquery.js"></script>
11         <script src="../../docs/_assets/js/jqm-docs.js"></script>
12         <script src="../../js/"></script>
13
14 </head> 
15 <body> 
16
17 <div data-role="page" class="type-interior">
18
19         <div data-role="header" data-position="fixed" data-theme="f">
20
21                 <h1>Fixed toolbars</h1>
22                 <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse">Home</a>
23                 <a href="../nav.html" data-icon="search" data-iconpos="notext" data-rel="dialog" data-transition="fade">Search</a>
24         </div>
25         
26         <div data-role="content">
27                 <div class="content-primary">
28                                 <h2>Fixed toolbars</h2>
29                                 
30                             <ul data-role="controlgroup" data-type="horizontal" class="localnav">
31                               <li><a href="bars-fixed.html" data-role="button" data-transition="fade">Basics</a></li>
32                               <li><a href="bars-fixed-options.html" data-role="button" data-transition="fade">Options</a></li>
33                               <li><a href="bars-fixed-methods.html" data-role="button" data-transition="fade">Methods</a></li>
34                               <li><a href="bars-fixed-events.html" data-role="button" data-transition="fade" class="ui-btn-active">Events</a></li>
35                             </ul>
36                                 
37                                 <p>The fixedtoolbar plugin has the following custom events:</p>
38
39                                 <dl>
40                                 
41                                         <dt><code>create</code> triggered when a fixed toolbar is created</dt>
42                                         <dd>
43
44                                                 <pre><code>
45 $( ".selector" ).fixedtoolbar({
46    create: function(event, ui) { ... }
47 });             
48                                                 </code></pre>
49                                         </dd>
50                         
51
52                                 </div><!--/content-primary -->          
53
54                                 <div class="content-secondary">
55
56                                         <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
57
58                                                         <h3>More in this section</h3>
59
60                                                         <ul data-role="listview" data-theme="c" data-dividertheme="d">
61
62                                                                 <li data-role="list-divider">Toolbars</li>
63                                                                 <li><a href="docs-bars.html">Toolbar basics</a></li>
64                                                                 <li><a href="docs-headers.html">Header bars</a></li>
65                                                                 <li><a href="docs-footers.html">Footer bars</a></li>
66                                                                 <li><a href="docs-navbar.html">Navbars</a></li>
67                                                                 <li data-theme="a"><a href="bars-fixed.html">Fixed positioning</a></li>
68                                                                 <li><a href="footer-persist-a.html">Persistent toolbars</a></li>
69                                                                 <li><a href="bars-themes.html">Theming toolbars</a></li>
70
71                                                         </ul>
72                                         </div>
73                                 </div>          
74
75                         </div><!-- /content -->
76
77                         <div data-role="footer" class="footer-docs" data-theme="a" data-position="fixed">
78                                         <h1>Fixed Footer</h1>
79                         </div>
80
81                         </div><!-- /page -->
82
83                         </body>
84                         </html>