Kendo Window and BS3
HTML
<script src="http://cdn.kendostatic.com/2013.3.1119/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1119/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1119/styles/kendo.bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<div style="min-width: 970px; padding: 0 15px;">
<div class="container" style="width: 100%;">
<div class="row">
<div class="col-md-6">
<p>This is a test.</p>
</div>
<div class="col-md-6">
<p>This is a test.</p>
</div>
</div>
</div>
</div>
<div id="window">
<p>Artek Alvar Aalto - Armchair 402</p>
<div class="row">
<div class="col-md-5">
.col-md-5
</div>
<div class="col-md-5">
.col-md-5
</div>
</div>
<p>Born Hugo Alvar Henrik Aalto (February 3, 1898 - May 11, 1976) in Kuortane, Finland, was noted for his humanistic approach to modernism. He studied architecture at the Helsinki University of Technology from 1916 to 1921. In 1924 he married architect Aino Marsio.</p>
<p>Alvar Aalto was one of the first and most influential architects of the Scandinavian modern movement, and a member of the Congres Internationaux d'Architecture Moderne. Major architectural works include the Finlandia Hall in Helsinki, Finland, and the campus of Helsinki University of Technology.</p>
<p>Source: <a href="http://www.aalto.com/about-alvar-aalto.html" title="About Alvar Aalto">www.aalto.com</a></p>
</div>
JavaScript
jQuery(function(){
jQuery("#window").kendoWindow({
"animation": false,
"modal": true,
"iframe": false,
"draggable": false,
"pinned": false,
"title": "Add Address",
"resizable": false,
"content": null,
"width": 450,
"height": 300,
"actions": ["Close"]
});
});