chap2. KnockoutJS Templates->Preparing the project
parent
834316a5a4
commit
ee6c23d6d3
|
@ -0,0 +1,29 @@
|
||||||
|
.container-fluid {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
.row {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
.cart-unit {
|
||||||
|
width: 80px;
|
||||||
|
}
|
||||||
|
.btn-xs {
|
||||||
|
font-size: 8px;
|
||||||
|
}
|
||||||
|
.list-group-item {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.list-group-item h4 {
|
||||||
|
float: left;
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
.list-group-item .input-group-addon {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.btn-group-vertical > .btn-default {
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
||||||
|
.form-control[disabled],
|
||||||
|
.form-control[readonly] {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
|
@ -6,85 +6,25 @@
|
||||||
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
|
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Catalog</h1>
|
<div class="container-fluid">
|
||||||
|
<div class="row" id="catalogContainer">
|
||||||
<h2>Insert</h2>
|
<div class="col-xs-12" data-bind="template:{name:'header'}"></div>
|
||||||
<form class="form-horizontal" role="form" data-bind="with:newProduct">
|
<div class="col-xs-6" data-bind="template:{name:'catalog'}"></div>
|
||||||
<div class="form-group">
|
<div
|
||||||
<div class="col-sm-12">
|
id="cartContainer"
|
||||||
<input
|
class="col-xs-6 well hidden"
|
||||||
type="text"
|
data-bind="template:{name:'cart'}"
|
||||||
class="form-control"
|
></div>
|
||||||
placeholder="Name"
|
|
||||||
data-bind="textInput:name"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div
|
||||||
<div class="col-sm-12">
|
class="row hidden"
|
||||||
<input
|
id="orderContainer"
|
||||||
type="password"
|
data-bind="template:{name:'order'}"
|
||||||
class="form-control"
|
></div>
|
||||||
placeholder="Price"
|
<div data-bind="template: {name:'add-to-catalog-modal'}"></div>
|
||||||
data-bind="textInput:price"
|
<div data-bind="template: {name:'finish-order-modal'}"></div>
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="col-sm-12">
|
|
||||||
<input
|
|
||||||
type="password"
|
|
||||||
class="form-control"
|
|
||||||
placeholder="Stock"
|
|
||||||
data-bind="textInput:stock"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="col-sm-12">
|
|
||||||
<button
|
|
||||||
type="submit"
|
|
||||||
class="btn btn-default"
|
|
||||||
data-bind="{click:$parent.addProduct}"
|
|
||||||
>
|
|
||||||
<i class="glyphicon glyphicon-plus-sign"> </i> Add Product
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<h2>Search</h2>
|
|
||||||
<div class="input-group">
|
|
||||||
<span class="input-group-addon">
|
|
||||||
<i class="glyphicon glyphicon-search"></i> Search</span
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
class="form-control"
|
|
||||||
data-bind="textInput: searchTerm"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>Products</h2>
|
|
||||||
<strong>Items:</strong>
|
|
||||||
<span data-bind="text:catalog().length"></span>
|
|
||||||
<table class="table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Price</th>
|
|
||||||
<th>Stock</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody data-bind="foreach:catalog">
|
|
||||||
<tr>
|
|
||||||
<td data-bind="text:name"></td>
|
|
||||||
<td data-bind="text:price"></td>
|
|
||||||
<td data-bind="text:stock"></td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<!-- vendor library -->
|
<!-- vendor library -->
|
||||||
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
|
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
|
||||||
<script type="text/javascript" src="js/bootstrap.js"></script>
|
<script type="text/javascript" src="js/bootstrap.js"></script>
|
||||||
|
|
Loading…
Reference in New Issue