Trollo
24 Aug 2008, 6:14 AM
Hello,
evaluating Ext GWT I ran into trouble with the ToolTip class or with the validation messages that use this class respectively.
I was not able to have a TextField display the correct validation message if several messages are used. The ToolTip shown is always the first message that occurred on the text field.
Could it be possible, that there is a bug in the ToolTip update methods?
This patch helped me to go on with my evaluation:
(diff -u)
--- ToolTip.java 2008-08-05 11:22:16.000000000 +0200
+++ ToolTip-patched.java 2008-08-22 23:40:09.000000000 +0200
@@ -239,6 +239,7 @@
* @param config the tool tip config
*/
public void update(ToolTipConfig config) {
+ updateConfig(config);
if (!hidden) {
updateContent();
}
If this is really a bug, please excuse me to use this forum, but I was not allowed to post to the bug forum.
Regards
evaluating Ext GWT I ran into trouble with the ToolTip class or with the validation messages that use this class respectively.
I was not able to have a TextField display the correct validation message if several messages are used. The ToolTip shown is always the first message that occurred on the text field.
Could it be possible, that there is a bug in the ToolTip update methods?
This patch helped me to go on with my evaluation:
(diff -u)
--- ToolTip.java 2008-08-05 11:22:16.000000000 +0200
+++ ToolTip-patched.java 2008-08-22 23:40:09.000000000 +0200
@@ -239,6 +239,7 @@
* @param config the tool tip config
*/
public void update(ToolTipConfig config) {
+ updateConfig(config);
if (!hidden) {
updateContent();
}
If this is really a bug, please excuse me to use this forum, but I was not allowed to post to the bug forum.
Regards