LIDOR SYSTEMS

Advanced User Interface Controls and Components

IntegralUI Web

Documentation and API Reference


addSlide(slide)

Adds a new slide to the SlideBar widget.

Parameters

ParamTypeDetails
slideObjectThe slide object to add to the collection

Return Value

This method does not return a value.

Version Information

Supported in: v1.0.

Example

In this example we are showing how to call addSlide method. Whenever the 'Add Slide' button is clicked a new slide will be created and added to the SlideBar.

$(document).ready(function() {

// Create an instance of SlideBar widget

var $bar = $('#slidebar').slidebar({

slideWidth: 300,

slideHeight: 200

});

 

// Get the number of slides in SlideBar

var getSlideCount = function(){

return $bar.slidebar("getList").length + 1;

}

 

// Create a new slide

var createNewSlide = function(){

return { content: "<div class="slide"><span>Slide " + getSlideCount() + "</span></div>" };

}

 

// When 'Add Slide' button is clicked, add a new slide to the SlideBar

var add = function(){

var slide = $bar.slidebar("addSlide", createNewSlide());

}

});

<!DOCTYPE html>

<html>

<head>

<link rel="stylesheet" href="css/integralui.slidebar.css" />

<link rel="stylesheet" href="css/themes/theme-blue.css" />

<script type="text/javascript" src="external/jquery-1.9.1.min.js"></script>

<script type="text/javascript" src="external/jquery.ui.core.min.js"></script>

<script type="text/javascript" src="external/jquery.ui.widget.min.js"></script>

<script type="text/javascript" src="js/jquery.integralui.widget.min.js"></script>

<script type="text/javascript" src="js/jquery.integralui.slidebar.min.js"></script>

</head>

<body>

<button type="button" onclick="add()" />Add Slide</button>

<div id="slidebar" class="widget"></div>

</body>

</html>

.widget

{

background-color: white;

border: thin solid gray;

height: auto;;

}

.slide

{

width: 300px;

height: 200px;

text-align: center;

}

.slide span

{

display: inline-block;

font-size: 2em;

margin: 25% auto;

vertical-align: middle;

}

Samples

See Also