Code:
isc.DynamicForm.create({ ID: "exampleForm",backgroundColor: "blue", canHover:true,width: 250,height: 200, prompt: "TEST",hoverStyle: "myHighGridCellDark", fields: [] });
CSS:
Code:
.myHighGridCellDark { background-color:"red"; }
isc.DynamicForm.create({ ID: "exampleForm",backgroundColor: "blue", canHover:true,width: 250,height: 200,showHover: true, getHoverHTML: function(){return isc.Label.create({contents:"TEST"});},hoverStyle: "myHighGridCell", fields: [ ] });
Comment