Dear, someone can explain to me how to edit the commands provided by Kendo UI when creating a tree list table. That is, change the name of 'edit' to edit and also add features to taste.
<kendo-treelist data-source-ref="remoteDataSource"
:filterable="true"
:toolbar="['create']"
:sortable="true"
:checkboxes="true"
:drag-and-drop="true"
:editable="'popup'"
@change="onChange"
@check="onCheck"
@collapse="onCollapse"
@dataBound="onDataBound"
@drag="onDrag"
@dragStart="onDragStart"
@dragEnd="onDragEnd"
@drop="onDrop"
@expand="onExpand"
@navigate="onNavigate"
@select="onSelect"
>
<kendo-treelist-column :field="'Rubro'" :width="140"></kendo-treelist-column>
<kendo-treelist-column :field="'Descripcion'" :width="140"></kendo-treelist-column>
<kendo-treelist-column :title="'Acciones'" :command="['edit', 'destroy']" :width="200"></kendo-treelist-column>
</kendo-treelist>
I'm working with vuejs and I'm not able to change the name, nor add functionality to the edit button:
:command="['edit', 'destroy']"