EnVisageOnline/Main/Source/EnVisage/Views/Note/_edit.cshtml

31 lines
924 B
Plaintext

<style type="text/css">
.notewindow {
width: 99% !important;
resize: none !important;
}
</style>
<div id="NoteInput{{ParentId}}">
<table class="table">
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input class="form-control notewindow" ng-model="Note.Title" ng-disabled="(Note.CreatedBy && UserName!=Note.CreatedBy && !SuperUser)" maxlength="400" type="text" placeholder="Title">
</td>
</tr>
<tr>
<td>
<textarea class="form-control notewindow" ng-model="Note.Details" ng-disabled="(Note.CreatedBy && UserName!=Note.CreatedBy && !SuperUser)" maxlength="4000" placeholder="Note" rows="10"></textarea>
</td>
</tr>
</tbody>
</table>
</div>