google-code-export / activeweb

Automatically exported from code.google.com/p/activeweb
0 stars 0 forks source link

attribute html_id don't work in LinkToTag #37

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
You can fix it easily, by adding next statements in LinkToTag.java

if(params.get("html_id")!= null){
            tf.attribute("id", params.get("html_id").toString());
        }
        tf.addAttributesExcept(params, "controller", "action", "form", "id", "method",
                "query_string", "query_params", "context_path", "destination",
                "before", "before_arg", "after", "after_arg", "confirm", "error", "html_id");

(code from FormTag.java)

Original issue reported on code.google.com by andreyma...@gmail.com on 1 Jun 2011 at 5:45

GoogleCodeExporter commented 9 years ago

Original comment by ipolevoy@gmail.com on 18 Oct 2011 at 8:28