lapluviosilla / bootstrap-popover-x

Bootstrap popover extended with modal properties and more.

Home Page:http://plugins.krajee.com/popover-x

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bootstrap-popover-x

Bootstrap Popover Extended - Popover with modal behavior, styling enhancements and more. This plugin is inspired by BootstrapModalPopover for Bootstrap 2.x. This plugin enhances and simplifies these concepts for Bootstrap 3.x, and incorporates various additional styling options.

NOTE: The latest version of the plugin v1.4.0 has been released. Refer the CHANGE LOG for details.

Features

The plugin offers these enhanced features:

  • The extended popover can be rendered just like a bootstrap modal dialog with the bootstrap popover styling. Since the plugin extends the bootstrap modal, all features of the bootstrap modal and its methods are also available.
  • Adds a popover footer along with header. Configuration of the HTML content for the popover is much easier, just like a bootstrap modal.
  • Specially styles and spaces out bootstrap buttons added in popover footer.
  • Add a close icon/button to a popover window.
  • Configure various prebuilt styles/templates. In addition to a default (grey), the bootstrap 3 contextual color styles of primary, info, success, danger, and warning can be used.
  • Control popover placements with respect to the target element. The plugin supports 12 different placement options:
    • right
    • left
    • top
    • bottom
    • top top-left
    • top top-right
    • bottom bottom-left
    • bottom bottom-right
    • left left-top
    • left left-bottom
    • right right-top
    • right right-bottom
  • Specially style the popover arrow to be consistent for each contextual color and popover placement.
  • Prebuilt CSS styles for controlling appearance and sizes of the popovers

Demo

View the plugin documentation and plugin demos at Krajee JQuery plugins.

Pre-requisites

  1. Bootstrap 3.x (Requires bootstrap modal.js)
  2. Latest JQuery
  3. Most browsers supporting CSS3 & JQuery.

Installation

Using Bower

You can use the bower package manager to install. Run:

bower install bootstrap-popover-x

Using Composer

You can use the composer package manager to install. Either run:

$ php composer.phar require kartik-v/bootstrap-popover-x "dev-master"

or add:

"kartik-v/bootstrap-popover-x": "dev-master"

to your composer.json file

Manual Install

You can also manually install the plugin easily to your project. Just download the source ZIP or TAR ball and extract the plugin assets (css and js folders) into your project.

Usage

Load Client Assets

You must first load the following assets in your header.

<link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
<link href="path/to/css/bootstrap-popover-x.min.css" media="all" rel="stylesheet" type="text/css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.js"></script>
<script src="path/to/js/bootstrap-popover-x.min.js" type="text/javascript"></script>

If you noticed, you need to load the bootstrap.min.css, jquery.min.js, and bootstrap.min.js in addition to the bootstrap-popover-x.min.css and bootstrap-popover-x.min.js for the plugin to work with default settings.

Note: The plugin extends the bootstrap modal plugin and hence the bootstrap.min.js must be loaded before bootstrap-popover-x.min.js.

Option 1: Via data attributes

After loading the assets, setup your input markup for the extended popover plugin. You can activate the extended popover without writing JavaScript. Set data-toggle="popover-x" on a controller element, like a button, along with a data-target="#foo" or href="#foo" to target a specific popover to toggle.

<button class="btn btn-primary btn-lg" data-toggle="popover-x" data-target="#myPopover1" data-placement="top">Top</button>
<div id="myPopover1" class="popover popover-default">
    <div class="arrow"></div>
    <h3 class="popover-title"><span class="close" data-dismiss="popover-x">&times;</span>Title</h3>
    <div class="popover-content">
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.</p>
    </div>
</div>

Option 2: Via javascript

Alternatively, you can initialize the popover manually on your page via javascript.

$('#myPopover1').popoverX(options);

Documentation

Plugin Options

The plugin supports all options that are supported by the bootstrap modal. The following options are important for the bootstrap-popover-x plugin:

placement

string, the positioning of the popover with respect to the initialized element/button. It can be one of left, right, top, bottom. Defaults to right.

keyboard

boolean, when set to true, it closes the popover when escape key is pressed. Defaults to true.

show

boolean, shows the popover when initialized. Defaults to true.

useOffsetForPos

boolean, use the offset method instead of position method to get the popover position. Defaults to false.

Plugin Events

The plugin supports these events:

click.target.popoverX

This event is fired when the popover target button is clicked to open the popover dialog.

load.complete.popoverX

This event is fired when the popover has loaded content using the remote option.

keyup.target.popoverX

This event is fired when the escape key is pressed to hide the popover.

show.bs.modal

This event fires immediately when the show instance method is called. If caused by a click, the clicked element is available as the relatedTarget property of the event.

shown.bs.modal

This event is fired when the popover has been made visible to the user (will wait for CSS transitions to complete). If caused by a click, the clicked element is available as the relatedTarget property of the event.

hide.bs.modal

This event is fired immediately when the hide instance method has been called.

hidden.bs.modal

This event is fired when the popover has finished being hidden from the user (will wait for CSS transitions to complete).

Example:

$('#myPopover1').on('hidden.bs.modal', function (e) {
    // do something...
});

Plugin Methods

The plugin supports these methods:

toggle

Manually toggles a popover. Returns to the caller before the popover has actually been shown or hidden (i.e. before the shown.bs.modal or hidden.bs.modal event occurs).

$('#myPopover1').popoverX('toggle')

refreshPosition

Refresh the position of the popover via javascript based on the popover dimensions and placement.

$('#myPopover1').popoverX('refreshPosition')

show

Manually opens a popover. Returns to the caller before the modal has actually been shown (i.e. before the shown.bs.modal event occurs).

$('#myPopover1').popoverX('show')

hide

Manually hides a popover. Returns to the caller before the modal has actually been hidden (i.e. before the hidden.bs.modal event occurs).

$('#myPopover1').popoverX('hide')

License

bootstrap-popover-x is released under the BSD 3-Clause License. See the bundled LICENSE.md for details.

About

Bootstrap popover extended with modal properties and more.

http://plugins.krajee.com/popover-x

License:Other


Languages

Language:HTML 100.0%