spoonx/sxbootstrapwizard

A wizard module for twitter bootstrap, depending on SxBootstrap.

Installs: 2 080

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 4

Forks: 1

Open Issues: 0

Language:JavaScript

Type:module

0.2.0 2013-11-01 10:38 UTC

This package is auto-updated.

Last update: 2024-04-22 21:52:18 UTC


README

A twitter bootstrap wizard.

Installation

  1. Add the dependency to your composer.json file:
    "require": {
        "spoonx/sxbootstrapwizard": "0.2.*"
    }

Usage

Here's a simple example:

php (view)

<?php

// Add the assets
$this->sxbWizardAssets()->add();

// The title to show. (Automatically translated, whenever a translator is available).
$title  = 'My dialog!';

// The ID needed to reference your wizard later on
$id = 'my-wizard';

// Create a new wizard instance
$wizard = $this->sxbWizard($title, $id);

/* Add a card.
 *
 * $label       The label for the card. (Automatically translated, whenever a translator is available).
 *
 * $content     The content for the card. Allowed types are:
 *                  - ViewModel
 *                  - /path/to/view (will be resolved, and loaded using partial helper)
 *                  - string
 *
 * $cardName    The name of the card (used in the front-end)
 */
$wizard->addCard($label, $viewModel, $cardName);

echo $wizard

Javascript

var options = {},
    wizard  = $("#my-wizard").wizard(options);

wizard.show();

Questions / support

If you're having trouble with the module there are a couple of resources that might be of help.