Building a Chat Web App With Signal R, Part 2: Listing 8
The Person Model Razor View.
<script type="text/html" id="personTemplate">
<!--Data Template-->
<tr>
<td><input class="ui-corner-all" data-bind="value: firstName, valueUpdate: 'afterkeydown'" /></td>
<td><input class="ui-corner-all" data-bind="value: lastName, valueUpdate: 'afterkeydown'" /></td>
<td><input class="ui-corner-all" data-bind="value: email, valueUpdate: 'afterkeydown'" /></td>
<td><input class="ui-button" type="button" href="#" data-bind="click: removePerson" value="Delete" /></td>
</tr>
</script>
About the Author
Eric Vogel is a Senior Software Developer for Red Cedar Solutions Group in Okemos, Michigan. He is the president of the Greater Lansing User Group for .NET. Eric enjoys learning about software architecture and craftsmanship, and is always looking for ways to create more robust and testable applications. Contact him at [email protected].