knockout.js sample
This commit is contained in:
parent
1e8317e883
commit
8cccf816a3
1 changed files with 63 additions and 225 deletions
288
index.html
288
index.html
|
|
@ -22,6 +22,8 @@
|
|||
<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
|
||||
<link href='//fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
|
||||
|
||||
<link href='//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css' rel='stylesheet' type='text/css'>
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
|
|
@ -83,7 +85,8 @@
|
|||
<span class="name">gridstack.js</span>
|
||||
<hr class="star-light">
|
||||
<p>gridstack.js is a jQuery plugin for widget layout. This is drag-and-drop multi-column
|
||||
grid. It allows you to build draggable responsive bootstrap v3 friendly layouts.</p>
|
||||
grid. It allows you to build draggable responsive bootstrap v3 friendly layouts.
|
||||
It also works great with <a href="http://knockoutjs.com">knockout.js</a></p>
|
||||
|
||||
<p>Inspired by <a href="http://gridster.net">gridster.js</a>. Built with love.</p>
|
||||
</div>
|
||||
|
|
@ -128,6 +131,61 @@
|
|||
</div>
|
||||
|
||||
<p>Coming soon...</p>
|
||||
|
||||
<h3>Use with knockout.js</h3>
|
||||
|
||||
<pre><code class="javascript">
|
||||
ko.components.register('dashboard-grid', {
|
||||
viewModel: {
|
||||
createViewModel: function (params, componentInfo) {
|
||||
var ViewModel = function (params, componentInfo) {
|
||||
var grid = null;
|
||||
|
||||
this.widgets = params.widgets;
|
||||
|
||||
this.afterAddWidget = function (items) {
|
||||
_.each(items, function (item) {
|
||||
item = $(item);
|
||||
if (item.data('_gridstack_node'))
|
||||
return;
|
||||
|
||||
if (grid == null) {
|
||||
grid = $(componentInfo.element).find('.grid-stack').gridstack({
|
||||
auto: false
|
||||
}).data('gridstack');
|
||||
}
|
||||
|
||||
grid.add_widget(item);
|
||||
}, this);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
return new ViewModel(params, componentInfo);
|
||||
}
|
||||
},
|
||||
template: [
|
||||
'<div class="grid-stack">',
|
||||
' <!-- ko foreach: widgets, afterRender: afterAddWidget -->',
|
||||
' <div class="grid-stack-item" data-bind="attr: {',
|
||||
' \'data-gs-x\': x,',
|
||||
' \'data-gs-y\': y,',
|
||||
' \'data-gs-width\': width,',
|
||||
' \'data-gs-height\': height',
|
||||
' }">',
|
||||
' <span data-bind="text: $index"></span>',
|
||||
' </div>',
|
||||
' <!-- /ko -->',
|
||||
'</div>'
|
||||
].join('\n')
|
||||
});
|
||||
</code></pre>
|
||||
|
||||
<p>and HTML:</p>
|
||||
|
||||
<pre><code class="html">
|
||||
<div data-bind="component: {name: 'dashboard-grid', params: $data}"></div>
|
||||
</code></pre>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
@ -151,230 +209,6 @@
|
|||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Portfolio Modals -->
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>Project Title</h2>
|
||||
<hr class="star-primary">
|
||||
<img src="img/portfolio/cabin.png" class="img-responsive img-centered" alt="">
|
||||
<p>Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!</p>
|
||||
<ul class="list-inline item-details">
|
||||
<li>Client:
|
||||
<strong><a href="http://startbootstrap.com">Start Bootstrap</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">April 2014</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">Web Development</a>
|
||||
</strong>
|
||||
</li>
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>Project Title</h2>
|
||||
<hr class="star-primary">
|
||||
<img src="img/portfolio/cake.png" class="img-responsive img-centered" alt="">
|
||||
<p>Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!</p>
|
||||
<ul class="list-inline item-details">
|
||||
<li>Client:
|
||||
<strong><a href="http://startbootstrap.com">Start Bootstrap</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">April 2014</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">Web Development</a>
|
||||
</strong>
|
||||
</li>
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>Project Title</h2>
|
||||
<hr class="star-primary">
|
||||
<img src="img/portfolio/circus.png" class="img-responsive img-centered" alt="">
|
||||
<p>Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!</p>
|
||||
<ul class="list-inline item-details">
|
||||
<li>Client:
|
||||
<strong><a href="http://startbootstrap.com">Start Bootstrap</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">April 2014</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">Web Development</a>
|
||||
</strong>
|
||||
</li>
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>Project Title</h2>
|
||||
<hr class="star-primary">
|
||||
<img src="img/portfolio/game.png" class="img-responsive img-centered" alt="">
|
||||
<p>Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!</p>
|
||||
<ul class="list-inline item-details">
|
||||
<li>Client:
|
||||
<strong><a href="http://startbootstrap.com">Start Bootstrap</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">April 2014</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">Web Development</a>
|
||||
</strong>
|
||||
</li>
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>Project Title</h2>
|
||||
<hr class="star-primary">
|
||||
<img src="img/portfolio/safe.png" class="img-responsive img-centered" alt="">
|
||||
<p>Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!</p>
|
||||
<ul class="list-inline item-details">
|
||||
<li>Client:
|
||||
<strong><a href="http://startbootstrap.com">Start Bootstrap</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">April 2014</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">Web Development</a>
|
||||
</strong>
|
||||
</li>
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>Project Title</h2>
|
||||
<hr class="star-primary">
|
||||
<img src="img/portfolio/submarine.png" class="img-responsive img-centered" alt="">
|
||||
<p>Use this area of the page to describe your project. The icon above is part of a free icon set by <a href="https://sellfy.com/p/8Q9P/jV3VZ/">Flat Icons</a>. On their website, you can download their free set with 16 icons, or you can purchase the entire set with 146 icons for only $12!</p>
|
||||
<ul class="list-inline item-details">
|
||||
<li>Client:
|
||||
<strong><a href="http://startbootstrap.com">Start Bootstrap</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">April 2014</a>
|
||||
</strong>
|
||||
</li>
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">Web Development</a>
|
||||
</strong>
|
||||
</li>
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.min.js"></script>
|
||||
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
||||
|
|
@ -385,11 +219,14 @@
|
|||
<script src="freelancer/js/classie.js"></script>
|
||||
<script src="freelancer/js/cbpAnimatedHeader.js"></script>
|
||||
|
||||
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script>
|
||||
|
||||
<!-- Custom Theme JavaScript -->
|
||||
<script src="freelancer/js/freelancer.js"></script>
|
||||
|
||||
<script src="gridstack.js"></script>
|
||||
<script type="text/javascript">
|
||||
hljs.initHighlightingOnLoad();
|
||||
$(function () {
|
||||
$('.grid-stack').gridstack({
|
||||
width: 12
|
||||
|
|
@ -400,3 +237,4 @@
|
|||
|
||||
</html>
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue