Hi,
I would like that trigger event button shows a mask.
Actually I use the following code that works. But I would like if exists a config for enable it without listeners or a delphi property
function afterrender(sender, eOpts)
{
sender.getTriggers().t1.el.addListener("click", function(event) {
sender.showMask("Loading...");
});
}
Regards