سؤال

For some reason i am not able to enter any text in inputtext in dhtml environment. The same is working fine in swf10 environment.

When i hover over the input text i observed that the cursor is not changing to selector. It looks as if the onmouseover event of inputtext is not getting fired.

Has anyone come across this kind of issue in openlaszlo dhtml envrironment?

I am using OpenLaszlo 4.9, Windows 7 and the browser is Firefox 15.0

I found a bug report in jira http://jira.openlaszlo.org/jira/browse/LPP-9934.

Please suggest any ideas to overcome this issue/

هل كانت مفيدة؟

المحلول

The problem you are seeing is probably connected to the way OpenLaszlo replicates the behavior of clicking through Sprites or visual elements in the Flash runtime for the DHTML/JavaScript runtime. Until recently browsers didn't support that kind of functionality directly. Therefore the OpenLaszlo team had to use a workaround, which is described in detail in this comment on LPP-5447.

Clickdivs exist to have independent control over clickable sprites, without interference from regular divs. They are placed in a separate copy of the regular lzdiv sprite hierarchy so we have more control. This also provides a place to put focused inputtext divs so they are in the foreground and clicking/dragging to edit works properly.

The clickdiv functionality seems to be broken from time to time with browser updates or due to regressions. In 2012 some improvements to the DHTML runtime click-through functionality were done, using newer browser features in Firefox (which now allows to click through div elements using the CSS style pointer-events). Since the clickdiv functionality is part of the LFC, fixing that functionality in your application is not advised.

You can test if the inputtext works by tabbing through the components until your inputtext element has the focus and start typing. If the text can be entered as expected, but you cannot click the component with your mouse to select it, it's definitely a clickdiv problem.

Update: Tested with OpenLaszlo 4.9.0 and various browsers
I've tested with OpenLaszlo 4.9.0, DHTML runtime and IE9, Firefox as well as Chrome, using the test case attached to LPP-9934: All browsers show that specific bug behavior. If the bug has not been filed, please file a JIRA bug.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top