Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Add missing plugins docs and fix up existing ones
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Jun 5, 2012
1 parent 43b8fa2 commit 07e7411
Show file tree
Hide file tree
Showing 13 changed files with 584 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/content.md
@@ -1,4 +1,4 @@
# Content
# qTip<sup>2</sup> - Options - Content

The content object defines what content will be displayed within the tooltip, as well as the the title of the tooltip and various other aspects.

Expand Down
2 changes: 1 addition & 1 deletion docs/core.md
@@ -1,4 +1,4 @@
# Core options
# qTip<sup>2</sup> - Options - Core

The core options are the options which have no parent object i.e. they are all located in the upper configuration object, as detailed below.

Expand Down
2 changes: 1 addition & 1 deletion docs/events.md
@@ -1,4 +1,4 @@
# Events
# qTip<sup>2</sup> - Events

The events object determines the initial event handlers which are bound to the tooltip.

Expand Down
2 changes: 1 addition & 1 deletion docs/global.md
@@ -1,4 +1,4 @@
# Global
# qTip<sup>2</sup> - Global properties

This section covers qTips **global options**, which effect every qTip created on the page, both past and future.

Expand Down
2 changes: 1 addition & 1 deletion docs/hide.md
@@ -1,4 +1,4 @@
# Hide
# qTip<sup>2</sup> - Options - Hide

The hide object defines what events trigger the tooltip to hide on which elements, as well as the initial delay and several other properties.

Expand Down
217 changes: 217 additions & 0 deletions docs/plugins/ajax.md
@@ -0,0 +1,217 @@
# qTip<sup>2</sup> - Plugins - AJAX

The AJAX plugin extends your content options allowing you to use jQuery's built-in AJAX functionality to retrieve remote content.
This is especially useful in conjunction with the [Modal plugin](./modal.md) to create modal dialogues with minimal effort, such as login forms.

<a name="basics"></a>
## Basics
Let's start off with the basic [AJAX object](./#ajax), which is used by qTip for AJAX functionality:

```js
$('.selector').qtip({
content: {
text: 'Loading...', // The text to use whilst the AJAX request is loading
ajax: {
url: '/path/to/file', // URL to the local file
type: 'GET', // POST or GET
data: {} // Data to pass along with your request
}
}
});
```

What you see above is the very basic setup for an AJAX call using qTip. The AJAX object itself is simply an embedded version of the same object used
in the original [jQuery.ajax](http://api.jquery.com/jQuery.ajax) call.

qTip<sup>2</sup> will automatically take the response from the request and set the [content.text](../content.md#text) for you if you don't override the default success handler.
However, if you intend on using your own [success callback](http://api.jquery.com/jQuery.ajax), you'll need to set it yourself using the [set](../api.md#set) method i.e.

```js
$('.selector').qtip({
content: {
text: 'Loading...', // The text to use whilst the AJAX request is loading
ajax: {
url: '/path/to/file', // URL to the local file
type: 'GET', // POST or GET
data: {}, // Data to pass along with your request
success: function(data, status) {
// Process the data

// Set the content manually (required!)
this.set('content.text', data);
}
}
}
});
```
**Note:** Access to the API inside $.ajax callbacks is achieved via the 'this' variable e.g. this.set(), as opposed to it being passed as an argument like in the API
[events]../events.md).

**Note:** If you wish to simply filter the returned content before it gets set as the content, use the [dataFilter](http://api.jquery.com/jQuery.ajax/) callback.


## HTML
Now that we know how to setup our basic AJAX call, let's look at the different types of data that can be returned, and how to deal with them. First up is the HTML content.
This is the simplest of the lot, since the HTML is simply appended to the tooltip contents.

All you have to do is supply the URL and request type, as well as any data you need to send along with the request, and the returned data automatically replaces the tooltip contents.
If an error occurs during the response, the tooltip contents are replaced with a description of the error that occurred.

## JSON
Nowadays the preferred method to return data from an AJAX request is via [JSON](http://www.json.org), or *J*ava*S*cript *O*bject *N*otation. This is
basically a fancy way of saying a JavaScript object.

Many popular server-side languages such as [Ruby](http://ruby-lang.org) and [PHP](http://php.net) provide ways of encoding their native data structures into JSON syntax.
Once you have your JSON being spat out correctly (example below), take a look at how to retrieve and use the JSON using qTip:

```js
/* JSON string returned by the server */
{
"person": {
"firstName": "Craig",
"lastName": "Thompson",
"gender": "Male",
"dob": "14/09/19??",
"country": "United Kingdom"
},
"job": {
"title": "Web Developer",
"company": "craigsworks",
"since": 2007
},
"specialities": [
"JavaScript", "jQuery", "CSS",
"(X)HTML", "PHP", "MySQL"
]
}

/* qTip2 call below will grab this JSON and use the firstName as the content */
$('.selector').qtip({
content: {
text: 'Loading...', // Loading text...
ajax: {
url: '/path/to/file', // URL to the JSON script
type: 'GET', // POST or GET
data: { id: 3 }, // Data to pass along with your request
dataType: 'json', // Tell it we're retrieving JSON
success: function(data, status) {
/* Process the retrieved JSON object
* Retrieve a specific attribute from our parsed
* JSON string and set the tooltip content.
*/
var content = 'My name is ' + data.person.firstName;

// Now we set the content manually (required!)
this.set('content.text', content);
}
}
}
});
```

As you can see, processing the data is very simple. We take the parsed JSON string returned from the server, use its attributes to create the
new [content](../content.md#text) of the tooltip, and call the API's [set](../api.md#set) method to replace the tooltip contents with it. Easy peasy!

**Note:** Unfortunately, the [dataFilter](http://api.jquery.com/jQuery.ajax) callback cannot be used to filter the JSON **object** like in the [HTML](#html) example above, only the unparsed JSON **string**.

-------------------------

<a name="ajax"></a>
## content.ajax

### Values
{ Object }, false *(Default: false)*

### Overview
This option allows you specify a regular [jQuery.ajax](http://api.jquery.com/jQuery.ajax/) object. This object is used in the $.ajax method and the retrieved content is used for the tooltips content.

### Examples
Let's grab some simple HTML content from a file as our tooltip contents:

```js
$('.selector').qtip({
content: {
ajax: {
url: 'tooltipContent.html'
}
}
});
```

We can also use the content.text to specify a loading image whilst we wait for the AJAX request to complete:

```js
$('.selector').qtip({
content: {
text: '<img src="images/loading.gif" alt="Loading..." />',
ajax: {
url: 'tooltipContent.html'
}
}
});
```

### See also
* [content.text](../content.md#text)

### Notes
* Before the AJAX content loads, regular content.text/attr options are used for the tooltip content.


<a name="once"></a>
## content.ajax.once

### Values
true, false *(Default: true)*

### Overview
Allows you specify whether or not the AJAX content is retrieved **each time the tooltip is shown** or just once when rendered.

### Examples
Perhaps we want to retrieve some frequently updated details about member each time the tooltip is shown:

```js
$('.selector').qtip({
content: {
ajax: {
url: 'members.php',
data: { id: 4 },
once: false // Re-fetch the content each time I'm shown
}
}
});
```

### Notes
* This option an extension of the regular [jQuery.ajax](http://api.jquery.com/jQuery.ajax/) object and **is not** a core jQuery.ajax option. It will only work with qTip<sup>2</sup>!


<a name="loading"></a>
## content.ajax.loading

### Values
true, false *(Default: true)*

### Overview
This option allows you whether or not the tooltip will be shown whilst content is being loaded via AJAX i.e. whether or not it is visible **before the content is loaded**.

### Examples
To hide the tooltip whilst the initial content is loaded, set it to false

```js
$('.selector').qtip({
content: {
text: 'This text won\'t be shown!',
ajax: {
url: 'mycontent.html',
loading: false
}
}
});
```

### See also
* [content.text](../content.md#text)

### Notes
* Even though the content.text will not be used, it must be set to something valid i.e. non-blank, so that the qTip will be considered valid and rendered.
25 changes: 25 additions & 0 deletions docs/plugins/bgiframe.md
@@ -0,0 +1,25 @@
# qTip<sup>2</sup> - Plugins - BGIFrame (IE6)

## Overview
This plugin is simply a wrapper around the [BGIFrame jquery plugin](http://plugins.jquery.com/project/bgiframe) by Brandon Aaron,
utilising qTips [API events](../api.md) to keep the plugin updated and compatible.

### Usage
This particular plugin requires no additional user configuration. In order to utilise it, simply make sure it's included in your [qTip<sup>2</sup> build](http://craigsworks.com/projects/qtip2/tutorials/github).

### Elements
In IE6 <b>only</b>, the created BGIframe element is available through the API's elements object:

```js
$('.selector').qtip({
content: {
text: 'IE6 bgiframe plugin'
},
events: {
render: function(event, api) {
// Grab the BGIFrame element
var elem = api.elements.bgiframe;
}
}
});
```
21 changes: 21 additions & 0 deletions docs/plugins/imagemap.md
@@ -0,0 +1,21 @@
# qTip<sup>2</sup> - Plugins - Imagemap

## Overview
The imagemap plugin adds additional positioning logic for &lt;map&gt; and &lt;area&gt; elements, allowing you to use qTips special [corner positioning](../position#md)
system with your imagemaps.

### Usage
This particular plugin requires no additional user configuration. In order to utilise it, simply make sure you have it included in your qTip build and make sure that you point your jQuery selector to
the &lt;area&gt; elements, **NOT the &lt;map&gt; element!** For example:

```js
$('area').qtip({
content: {
text: 'Support for area maps with no extra configuration! Awesome.'
},
position: {
my: 'top left',
at: 'bottom right'
}
});
```
22 changes: 22 additions & 0 deletions docs/plugins/svg.md
@@ -0,0 +1,22 @@
# qTip<sup>2</sup> - Plugins - SVG

## Overview
The SVG plugin adds additional positioning and dimension calculation logic for SVG elements, allowing you to use qTips special [corner positioning](../position.md)
system with your SVG elements.

This plugin was originally developed by [Edward Rudd](http://www.outoforder.cc/). Big shout-out to him for this!

### Usage
This particular plugin requires no additional user configuration. In order to utilise it, simply make sure you have it included in your qTip build and use as normal:

```js
$('path').qtip({
content: {
text: 'Support for SVG with no extra configuration! Awesome.'
},
position: {
my: 'top left',
at: 'bottom right'
}
});
```

0 comments on commit 07e7411

Please sign in to comment.