Hi Isomorphic,
I was trying to disable icon exchange on hover for FormItems as the icons look the same anyway in my application. Similar to your date_control.png / date_control_Over.png.
This did not work for me. I changed dateItem2 like this in the variousControls sample (v12.1p_2022-08-10):
With and without the change, I can see calls to the _Over.png. I expected that showOver: false and/or showOverIcons: false would stop this.
After reading the showOver docs I also tried updatePickerIconOnOver: false, which does seem to work. So I can solve my main issue!
But updateTextBoxOnOver: false and updateControlOnOver: false in order to disable textItemLite -> textItemLiteOver for the text entry box again did not work.
Could you check if everything is working here as it should? This applies to 12.0p+ IMHO, but 12.1p is relevant for me right now.
Best regards
Blama
I was trying to disable icon exchange on hover for FormItems as the icons look the same anyway in my application. Similar to your date_control.png / date_control_Over.png.
This did not work for me. I changed dateItem2 like this in the variousControls sample (v12.1p_2022-08-10):
Code:
{ name: "dateItem2", title: "Date changed", editorType: "DateItem", showOverIcons: false, showOver: false, useTextField: true },
After reading the showOver docs I also tried updatePickerIconOnOver: false, which does seem to work. So I can solve my main issue!
But updateTextBoxOnOver: false and updateControlOnOver: false in order to disable textItemLite -> textItemLiteOver for the text entry box again did not work.
Could you check if everything is working here as it should? This applies to 12.0p+ IMHO, but 12.1p is relevant for me right now.
Best regards
Blama
Comment