[ https://issues.apache.org/struts/browse/STR-3006?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_40256 ]
Frank W. Zammetti commented on STR-3006: ---------------------------------------- Thanks Niall, I do appreciate you posting that patch. I think tomorrow I'll have little choice but to go off and create my own version of the HTML taglib as you said originally, that's the most expedient option that gets me where I need to be. I just wish it was helping others too. One last point I want to make in reply to something you said... I know I'm arguing a long-standing policy here so I'm not going to get much traction, but is it really a good idea to make it so developers can't shoot themselves in the foot? I mean, saying that non-standard attributes won't be implemented on the tags because it will cause trouble for developers who use them seems to me to not be giving developers much credit... I think it's enough to document the attributes as being non-standard, in the TLD, in the source and in the tag docs, and if a developer goes and uses it anyway, I think it's right to have faith that they know the potential consequences. I don't believe a framework should expliticly stop you from doing something because the developers don't think its a good idea... it's different if something isn't possible just because it wasn't thought of or implemented, but here we're talking about a conscious decision to not allow something. I know I'm the minority, I know that's the policy and I know I'm not going to win this, but it just doesn't sit right with me. Paul, I saw your latest reply as I was typing this... that tag looks great, I think it would in fact solve my problem while still adhering to the policy, so definitely a win-win... so when will we see it committed? :) > Struts HTML taglib's select element doesn't support proper onfocus events in > IE7 > -------------------------------------------------------------------------------- > > Key: STR-3006 > URL: https://issues.apache.org/struts/browse/STR-3006 > Project: Struts 1 > Issue Type: Bug > Components: Taglibs > Affects Versions: 1.0 Final, 1.0.1, 1.0.1 Final, 1.0.2, 1.1.1, 1.2.2, > 1.2.4, 1.2.6 Beta, 1.2.7, 1.2.8, 1.2.9, 1.3.5, 1.3.6, 1.3.7, 1.4.0 > Environment: Any > Reporter: Frank W. Zammetti > Priority: Minor > Attachments: BaseHandlerTag.java, BaseHandlerTag.java.diff, > struts-attr-tag-v2.patch, struts-html.tld, struts-html.tld.diff > > > There is a known issue with IE7 and the plain <select> input element... let's > say for example you have this: > <html> > <head> > <title></title> > </head> > <body> > <select onFocus="this.style.backgroundColor='#ff0000';"> > <option value="1">1</option> > <option value="2">2</option> > </select> > </body> > </html> > In IE7, when you click on the dropdown arrow, the list of items will not > immediately show up, you need to click it twice. This is due to the onFocus > handler being attached. This is a known issue with IE. The solution is to > simply add an onFocusIn handler which (usually) mimics the onFocus handler. > However, in Struts 1, because the HTML taglib does not allow arbitrary > attributes (something I believe it should, and I said as much on a BugZilla > ticket which I can't seem to find in JIRA now, and along with it I suggested > adding a strictHTML attribute, which would default to true, to allow (false) > or disallow (true) arbitrary attributes), you cannot properly deal with this > issue at present if you use the HTML taglib. > Attached please find two updated files, BaseHandlerTag.java and > struts-html.tld, which adds support for the onfocusin attribute. > I marked this as Minor, but for those of us dealing with this issue right > now, it's more like a Major :) I also consider it a bug since I don't see > any viable work-around (someone can correct me if I'm wrong... and yes, not > using the HTML taglib is I suppose a valid answer, but I'd be looking for > something else) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.