I would like to display the entire collection in a table and make the "name" field in each row in place editable with X-editable
editable can be attached to each name in the table using the recently added "selector" option:
$('#collectionTable').editable({
selector: '.editable-click',
});
$('a.editable-click').on('save', function(e, params) {
console.log('Saved value: ' + params.newValue);
});
But I cannot run any of them until the template is completed and the DOM nodes are not accessible, so I put this in the “visualized” template callback.
, , , rendered, DOM node, . , , "".
, , , editable on ('save', function())?