When I switch my webix.min.js
, as my previous question. I can not access _feed_last object to get last feed url in datatable, eg:
$$("tbl")._feed_last.url
and when I switch back to webix.js
its working well.
How can I access _feed_last.url in production mode (webix.min.js) ? any other replacement object to this
Hello finzaiko,
All methods in our webix.js source code that begin with an underscore are considered private (not for customization), and when minifying the code they are also obfuscated, mean that there will be some other shorter name in webix.min.js instead of _feed_last name .
That means that you will not be able to get access to this private object in the production mode.
Could you describe the problem and the reason why you need _feed_last object access and maybe we could help you find a stable solution?