bootstrap-ax5picker
v0.4.0
Published
A picker plugin that works with Bootstrap & jQuery
Downloads
7
Maintainers
Readme
bootstrap-ax5picker
Dependencies
Install by bower
bower install bootstrap-ax5picker
bower is web front-end package manager.
using the bower
, when you install the plug-in is installed to resolve the plug-in dependencies under the bower_components
folder.
(You can change the folder location. .bowerrc )
It is recommended that you install by using the bower
.
If you've never used a bower is, you will be able to be used for http://bower.io/#install-bower.
Download code
Insert the "ax5picker" in the HTML HEAD.
Location of the folder can be determined freely in your project. But be careful not to accidentally caused exactly the path.
<html>
<head>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap-ax5picker/dist/ax5picker.css" />
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="bower_components/ax5core/dist/ax5core.min.js"></script>
<script type="text/javascript" src="bower_components/bootstrap-ax5picker/dist/ax5picker.min.js"></script>
</head>
<body>
<div class="input-group" id="pickerTarget">
<input type="text" class="form-control" placeholder="" />
<span class="input-group-addon"><i class="fa fa-calendar-o"></i></span>
</div>
</body>
</html>
Basic Usages
var picker = new ax5.ui.picker();
picker.bind({
target: $("#pickerTarget"),
direction: "top",
contentWidth: 200,
content: function (callBack) {
var html = ''
+ 'picker contents'
+ '<div style="padding: 10px;">'
+ '<button class="btn btn-default">FN 1</button>'
+ '</div>'
;
callBack(html);
}
});
Install by npm
If you do not use the bower, it can be downloaded by using the npm as second best. In npm, so pile on the package manager for the front end, you need to solve the problem of plug-in dependencies.
npm install jquery
npm install ax5core
npm install bootstrap-ax5calendar
npm install bootstrap-ax5formatter
npm install bootstrap-ax5picker
After you download the file in npm install, you will need to copy to the location where you want to use as a resource for the project.
If the inconvenience in the process that you want to copy the file and can be easily copied by using a gulp
or grunt
.
Preview
If you have any questions, please refer to the following gitHub