We have scenario where we display list of account Names and with each account name there is "show detail" button to open the account detail table. On the click event of "Show Detail" we get data from server is in json format. we use jQuery template to render JSON response to HTML table. each row of table should also have Edit/Delete facility. We have tried using Knockout to achive this. we are able to show the data in table but event are not firing up on click of EDIT/DELETE.
The Jquery Template we are using :
<script id="account-note-details-table" type="text/x-jquery-tmpl">
<table class="account-note-details-table ec-table">
<tr>
<th style="text-align:left; width:12%" nowrap="nowrap">Entered On</th>
<th style="text-align:left">Note</th>
<th style="text-align:left; width:15%">User</th>
</tr>
{{if results.length > 0}}
{{each results}}
<tr class="{{if $index % 2 != 0}}ec-alt-background-dark{{else}}ec-alt-background-light {{/if}}">
<td style="text-align:left">${$item.FormatJsonDate(EnteredDateKey)}</td>
<td style="text-align:left">${Note}</td>
<td style="text-align:left">${UserDomainName}</td>
</tr>
{{/each}}
{{else}}
<tr>
<td colspan="3" style="text-align:left">No account notes.</td>
</tr>
{{/if}}
</table>
Model For data:
function LocationUserNotesModel(data) {
var self = this;
if (!data) {
var data = {
userLocationNoteKey: -1,
locationKey: -1,
lastModifiedDateKey: Date.today().toString("MM/dd/yyyy"),
userDomainName: currentLoginName,
note: "",
isNew: true
}
}
self.userLocationNoteKey = data.userLocationNoteKey;
self.locationKey = data.locationKey;
self.lastModifiedDateKey = ko.observable(data.lastModifiedDateKey);
self.userDomainName = ko.observable(data.userDomainName);
self.note = ko.observable(data.note).revertable();
}
View Model USed is :
function LocationUserNotesViewModel() {
var self = this;
self.notes = ko.observableArray();
self.currentNote = ko.observable();
self.locationKey = locationKey;
self.currentLoginName = currentLoginName;
self.deleteNote = function (item) {
self.notes.remove(item);
};
self.addNote = function () {
self.currentNote(new LocationUserNotesModel());
LocationUserNotes.DisplayEditorOverlay('add');
};
self.resetNote = function () {
if (self.currentNote()) {
self.currentNote().note.revert();
self.currentNote(null);
}
}
self.editNote = function (item) {
self.currentNote(item);
LocationUserNotes.DisplayEditorOverlay('edit');
};
self.cancelEdit = function (item) {
item.note.revert();
self.currentNote(null);
LocationUserNotes.CloseEditorOverlay();
}
}
Function Applying view MOdel:
function (userAccountNotes, status, e) {
var accountUserNotesViewModel = new AccountUserNotesViewModel();
if (userAccountNotes.results.length > 0) {
ko.utils.arrayForEach(userAccountNotes.results, function (note) {
accountUserNotesViewModel.notes.push(new AccountUserNotesModel({
userAccountNoteKey: note.UserAccountNoteKey,
accountKey: note.AccountKey,
enteredDateKey: note.EnteredDateKey,
userDomainName: note.UserDomainName,
note: note.Note,
isNew: false
}));
});
}));
}
var accountUserNotesEditorOverlay = $("#account-user-notes-editor-overlay");
accountUserNotesViewModel = new AccountUserNotesViewModel();
$("#account-note-details-table").tmpl(accountUserNotesViewModel, options).appendTo("#" + target.attr("id"));
var accountUserNotesEditorOverlay = $("#" + target.attr("id"));
ko.applyBindings(accountUserNotesViewModel, accountUserNotesEditorOverlay[0]);
target.toggle();
});
please provide some sggestion..