Change onTimedKeyPress delay

The delay is defaulted to 250ms. Is there anyway to change this for a particular event?

You can define it in the setting of related view

webix.ui({
   view:"datatable",
   keyPressTimeout:100
});

Thank you.