Hi,
The lost edit confirmation in the ListGrid uses this code to create the ok, cancel and save button:
buttons:[isc.Dialog.OK,
{title:this.discardEditsSaveButtonTitle, width:75,
click:"this.hide();this.topElement.returnValue('save');"},
isc.Dialog.CANCEL]
The direct object for the save button makes it difficult to style that button. I solved it through a hack now (replacing the isc.confirm function). Is this something which can be changed somehow in the Isomorphic code? (or maybe I miss another official way of styling this button).
gr. Martin
The lost edit confirmation in the ListGrid uses this code to create the ok, cancel and save button:
buttons:[isc.Dialog.OK,
{title:this.discardEditsSaveButtonTitle, width:75,
click:"this.hide();this.topElement.returnValue('save');"},
isc.Dialog.CANCEL]
The direct object for the save button makes it difficult to style that button. I solved it through a hack now (replacing the isc.confirm function). Is this something which can be changed somehow in the Isomorphic code? (or maybe I miss another official way of styling this button).
gr. Martin
Comment