My edit-buttons disappear by clicking the edit button. Normally they should turn into save and cancel buttons automatically as far as in understood. By clicking the edit button the whole content inside my div(idCustomerTemplate) is replaced by an editor template.
Telerik Website says: Note: Click events for elements with class name k-update-button and k-cancel-button will be automatically handled and treated by Kendo ListView as save and cancel actions. The editor template should be wrapped in a HTML container, same as the item template.
Anyone has a hint for me ?
<script type="text/x-kendo-tmpl" id="idCustomerTemplate">
<div class="clsCustomerListView">
<dl>
<dt>Firmenname</dt>
<dd>#=CompanyName#</dd>
<dt>Adresse</dt>
<dd>#=Adress#</dd>
<dt>Postleitzahl</dt>
<dd>#=ZipCode#</dd>
<dt>Ort</dt>
<dd>#=Location#</dd>
<dt>Land</dt>
<dd>#=Country#</dd>
</dl>
<div class="edit-buttons">
<a class="k-button k-edit-button" href="\\#"><span class="k-icon k-edit"></span></a>
<a class="k-button k-delete-button" href="\\#"><span class="k-icon k-delete"></span></a>
</div>
</div>
</script>