I’m using SC V12.0p20180728.
In a ListGrid "rollOverCanvas" will not be displayed on new, not saved records.
You can see this with your showcase example “Grids” - "Appearance" - “RollOver Reticle Effect”
Add the following code for a new Button:
	and set one field of the listgrid "required" e.g.
	If you press the button a new, not saved row is added. On Mouse over only the row color changes, but "rollOverCanvas" will not be displayed.
For a consistent UI it would be useful if it works.
Thanks
Burkhard
							
						
					In a ListGrid "rollOverCanvas" will not be displayed on new, not saved records.
You can see this with your showcase example “Grids” - "Appearance" - “RollOver Reticle Effect”
Add the following code for a new Button:
Code:
	
	isc.IButton.create({
    top:250,
    title:"Add New",
    click:"countryList.startEditingNew({'capital':'Test'}); countryList.endEditing();"
});
Code:
	
	{name:"countryName", title:"Country", required:true}
For a consistent UI it would be useful if it works.
Thanks
Burkhard
Comment