3.2.0

can't select row in grid in iframe in Safari

Using the trial version of 2.5.3 in Safari 4, if I create a grid in an iframe, I can't select a row in the grid unless I first click somewhere else in the iframe.

For example, create the following page in the ActiveWidgets/examples/apps directory:

<body>
<iframe src="basic.htm" style="width:600px;height:300px"></iframe>
</body>

On that page in IE or Firefox, I can select rows in the grid. In Safari, I cannot, unless I click on empty space in the iframe first.

This may be the same problem that was reported here: http://www.activewidgets.com/javascript.forum.24530.7/can-t-select-row-in.html
CK
July 8,
I found a workaround:

obj.setEvent("onmousedown", function(event){
        obj.element().focus();
        return true;});


Alex, any comments?

CK
July 8,
This will be fixed in the next release. Apparently there were some changes in Safari 3.2/4 related to focus handling.
Alex (ActiveWidgets)
July 9,

This topic is archived.

See also:


Back to support forum