you have 2 solutions:
1. define exportType:"string" to required column to export it 'as is' if it is already formatted in source
2. define exportType:"number", exportFormat:"00000000" to achieve required format
https://snippet.webix.com/jk8dqagw
use onBeforeDeleteFile instead of onBeforeDelete
https://docs.webix.com/api__ui.filemanager_onbeforedeletefile_event.html
in callback check result and deleteFile on success
https://snippet.webix.com/tjfim9fx
in this case it totally depends on your internal logic.
also you can pass id created by addItem into sendRestReq and use it in onmessage event
var id = this.add({
signal1:"/"+context.path,
guid:0,
timestamp:0,
value:0,
type:0,
…
@ganeshkp
what is wrong with basic updateItem?
https://docs.webix.com/api__link__ui.datatable_updateitem.html
is not it possible to get item id from received data and update corresponding item?
https://snippet.webix.com/6yza0gg4
BTW, found strange behavior (probably bug).
if override any template in particular table's type, this template will be applied to ALL tables.
make any change in second table's checkbox template and you will see …
@Dalaz
you can override all multiview settings in dedicated multiview parameter
https://docs.webix.com/api__ui.tabview_multiview_config.html
https://snippet.webix.com/ezlwxeez
indeed you can create separate tabbar and multiview and link them by…
if url:".../contacts" returns all contacts and you want to get only loggedin user's contacts then you need to apply some filter to DataCollection using current user's id
https://docs.webix.com/api__link__datacollection_filter.html
but normally you…