Hi,
I'm having recently this issue: when mouse is over the Toolbar button, the button shrinks to 1 pixel width and an exception is raised (showed only in the Dev Console)
Can you reproduce the issue?
Do you know how to solve the problem?
1. SmartClient Version: v9.1p_2014-03-04/Pro Deployment (built 2014-03-04)
2. I.E. version 11.0.9600.17351 (11.0.13 KB2987107)
3-4. Client Side
5. Stack:
6. sample code if applicable:
GWT.XML
EntryPoint#onModuleLoad()
Thanks,
Omar
I'm having recently this issue: when mouse is over the Toolbar button, the button shrinks to 1 pixel width and an exception is raised (showed only in the Dev Console)
Can you reproduce the issue?
Do you know how to solve the problem?
1. SmartClient Version: v9.1p_2014-03-04/Pro Deployment (built 2014-03-04)
2. I.E. version 11.0.9600.17351 (11.0.13 KB2987107)
3-4. Client Side
5. Stack:
Code:
16:44:39.048:TMR7:WARN:Log:Error: Argumento no válido.
Stack from error.stack:
Canvas._assignSize () @ tovai/sc/modules/ISC_Core.js:2331:483
Button._assignRectToHandle () @ tovai/sc/modules/ISC_Foundation.js:424:448
Canvas._setHandleRect () @ tovai/sc/modules/ISC_Core.js:2331:1
Canvas.._adjustOverflow () @ tovai/sc/modules/ISC_Core.js:2241:98
Canvas._adjustOverflow () @ tovai/sc/modules/ISC_Core.js:2235:15
Canvas.adjustOverflow () @ tovai/sc/modules/ISC_Core.js:2231:35
Button.setTableClassName () @ tovai/sc/modules/ISC_Foundation.js:468:53
Button.stateChanged () @ tovai/sc/modules/ISC_Foundation.js:465:55
StatefulCanvas.setState () @ tovai/sc/modules/ISC_Foundation.js:173:117
StatefulCanvas.handleMouseOver () @ tovai/sc/modules/ISC_Foundation.js:211:117
GWT.XML
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.7.0//EN"
"http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-source/core/src/gwt-module.dtd">
<module rename-to="tovai">
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
<inherits name="com.smartgwtee.tools.Tools"/>
<inherits name="com.smartgwtee.SmartGwtEE"/>
<entry-point class='com.tovai.tovai.client.Tovai'/>
</module>
Code:
public void onModuleLoad()
{
ToolStrip bar = new ToolStrip();
ToolStripButton btnAdd = new ToolStripButton("Add");
bar.addButton(btnAdd);
bar.draw();
}
Omar
Comment