jquery-ui/demos/button/splitbutton.html

56 lines
1.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2010-01-20 14:00:14 +00:00
<html lang="en">
<head>
2010-09-10 02:43:06 +00:00
<meta charset="utf-8">
<title>jQuery UI Button - Split button</title>
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script src="../../jquery-1.4.2.js"></script>
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.button.js"></script>
<link rel="stylesheet" href="../demos.css">
<script>
2010-01-20 14:00:14 +00:00
$(function() {
2010-09-10 02:43:06 +00:00
$( "#rerun" )
2010-04-06 20:50:27 +00:00
.button()
2010-09-10 02:43:06 +00:00
.click(function() {
2010-04-06 20:50:27 +00:00
alert( "Running the last action" );
})
2010-09-10 02:43:06 +00:00
.next()
.button( {
text: false,
icons: {
primary: "ui-icon-triangle-1-s"
}
})
.click(function() {
alert( "Could display a menu to select an action" );
})
.parent()
.buttonset();
2010-01-20 14:00:14 +00:00
});
</script>
<style>
</style>
</head>
<body>
<div class="demo">
2010-09-10 02:43:06 +00:00
<div>
<button id="rerun">Run last action</button>
<button id="select">Select an action</button>
</div>
2010-01-20 14:00:14 +00:00
</div><!-- End demo -->
<div class="demo-description">
2010-09-10 02:43:06 +00:00
<p>An example of a split button built with two buttons: A plan button with just text, one with only a primary icon and no text. Both are grouped together in a set.</p>
2010-01-20 14:00:14 +00:00
</div><!-- End demo-description -->
</body>
</html>