escape

custom escaping function

boolean escape;

Example

var dp = new webix.DataProcessor({
    master:$$("list"),
    escape:function(value){
         return window.escape(value); //non-utf escaping
    }
})

Details

By default dataprocessor uses utf-8 escaping ( encodeURIComponents ).

Back to top