29.05.2015 Views

o_19mgorv9t13a3ko71fev19l81mqa.pdf

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

};<br />

function sendAjaxRequest(httpMethod, callback, url) {<br />

$.ajax("/api/web" + (url ? "/" + url : ""), {<br />

type: httpMethod, success: callback<br />

});<br />

}<br />

function getAllItems() {<br />

sendAjaxRequest("GET", function(data) {<br />

model.reservations.removeAll();<br />

for (var i = 0; i < data.length; i++) {<br />

model.reservations.push(data[i]);<br />

}<br />

});<br />

}<br />

function removeItem(item) {<br />

sendAjaxRequest("DELETE", function () {<br />

getAllItems();<br />

}, item.ReservationId);<br />

}<br />

}<br />

$(document).ready(function () {<br />

getAllItems();<br />

ko.applyBindings(model);<br />

});<br />

<br />

@section Body {<br />

<br />

Reservation Summary<br />

<br />

<br />

<br />

IDNameLocation<br />

<br />

<br />

<br />

<br />

<br />

<br />

<br />

<br />

Remove<br />

<br />

<br />

<br />

<br />

<br />

718

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!