Hello,
I'm using SmartClient_v91p_2014-03-23_PowerEdition and when I try to use titleHover it doesn't work, valueHover doesn't work either only itemHover works but I need an hover on the title.
Here is a reproduce scenario:
BTW, if I add titleHover in your Featured Samples it also doesn't work. Thank you.
I'm using SmartClient_v91p_2014-03-23_PowerEdition and when I try to use titleHover it doesn't work, valueHover doesn't work either only itemHover works but I need an hover on the title.
Here is a reproduce scenario:
Code:
isc.VLayout.create({
ID:"mainPageLayout",
autoDraw:true,
width:"100%",
height:"100%",
members:[
isc.DynamicForm.create({
titleSuffix:"",
requiredTitleSuffix:" <span style=\"color: red;\">*</span>",
requiredTitlePrefix:"",
titleAlign:"left",
fields:[
{
title:"Single Line of Text",
type:"text",
value:"Text Value",
name:"singleLineOfText",
titleHover:function (item, form) {
alert('Title Hover');
return true;
}
}
]
})
]
});