We have a date chooser on a grid row template. The date chooser have dropdown for years. The issue is when we change the year in the date calendar, the row template is removed and only the calendar is shown. We are using 6.2 web grid.
return true;
event.cancelButton is a IE constuct for passing the events (usually mouse events) up the DOM model. To stop a cancelable Infragistics event, you should just need to return true from the event.
Darell,
I tried the following but I am unable to prevent the template from closing. Am I doing something wrong? Thanks.
event.cancelBubble = true;
}
The client side model of the WebGrid should have a BeforeRowEditTemplateClosed event, or something like that name, in there you would need to cancel the event if you didn't come through the OK or Cancel button.