Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
bootstrap-popover-picker
Advanced tools
Generic jQuery plugin template for building pickers with Bootstrap popovers
Generic jQuery plugin template for building pickers using Bootstrap popovers, fully customizable with a powerful base API, including jQuery.UI position plugin.
How to use the plugin without inputs
You can call the plugin in several ways:
// Create instance if not exists (returns a jQuery object)
$('.my').picker();
$('.my').picker({ /*options*/ }); // you can also specify options via data-* attributes
// For the first matched element, access to a plugin property value
$('.my').data('picker').pickerProperty;
// For the first matched element, call a plugin instance method with the given args
$('.my').data('picker').pickerMethod('methodArg1', 'methodArg2' /* , other args */);
// Call and apply a plugin method to EACH matched element.
$.picker.batch('.my', 'pickerMethod', 'methodArg1', 'methodArg2' /* , other args */); ->
These are the default options
{
title: false, // Popover title (optional) only if specified in the template
selected: false, // use this value as the current item and ignore the original
defaultValue: false, // use this value as the current item if input or element item is empty
placement: 'bottom', // WIP (has some issues with auto and CSS). auto, top, bottom, left, right
collision: 'none', // If true, the popover will be repositioned to another position when collapses with the window borders
animation: true,
//hide picker automatically when a value is picked. it is ignored if mustAccept is not false and the accept button is visible
hideOnSelect: false,
showFooter: false,
searchInFooter: false, // If true, the search will be added to the footer instead of the title
mustAccept: false, // only applicable when there's an picker-btn-accept button in the popover footer
selectedCustomClass: 'bg-primary', // Appends this class when to the selected item
// List of valid items
items: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'],
itemProperty: null, // Defines which property will be accessed to show the value, in case of the items be an array of objects.
input: 'input', // children input selector (you can change this to anything even if it's not an input)
component: '.input-group-addon', // children component selector or object, relative to the parent element
container: false, // WIP. Appends the popover to a specific element. If true, appends to the jQuery element.
updateComponentOnChange: true, // If false, it will not update the content in the component
pickerItemClass: "picker-item", // Defines the selector class of the picker item,
itemValueSelector: "i", // Defines the selector of the element that contains the value of an item
// Plugin templates:
templates: {
popover: '<div class="picker-popover popover"><div class="arrow"></div>' +
'<div class="popover-title"></div><div class="popover-content"></div></div>',
footer: '<div class="popover-footer"></div>',
buttons: '<button class="picker-btn picker-btn-cancel btn btn-default btn-sm">Cancel</button>' +
' <button class="picker-btn picker-btn-accept btn btn-primary btn-sm">Accept</button>',
search: '<input type="search" class="form-control picker-search" placeholder="Type to filter" />',
picker: '<div class="picker"><div class="picker-items"></div></div>',
pickerItem: '<div class="picker-item"><i></i></div>',
}
}
All of them exposes the plugin instance through event.pickerInstance
In order of call:
This plugin comes with more placement options than the original Bootstrap Popover. Here are all the possibilities in detail:
1 2 3 4 5
G 6
F 7
E 8
D C B A 9
0. inline (no placement, display as inline-block)
1. topLeftCorner
2. topLeft
3. top (center)
4. topRight
5. topRightCorner
6. rightTop
7. right (center)
8. rightBottom
9. bottomRightCorner
A. bottomRight
B. bottom (center)
C. bottomLeft
D. bottomLeftCorner
E. leftBottom
F. left (center)
G. leftTop
Note: The position plugin is embedded with the picker plugin, but uses a different
namespace: $.fn.pos
, for avoiding other plugin issues.
FAQs
Generic jQuery plugin template for building pickers with Bootstrap popovers
The npm package bootstrap-popover-picker receives a total of 0 weekly downloads. As such, bootstrap-popover-picker popularity was classified as not popular.
We found that bootstrap-popover-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.