DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37722>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37722


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Additional Comments From [EMAIL PROTECTED]  2005-12-01 01:56 -------
(In reply to comment #0)
> Say you have a component A with 2 children components, B and C.
> All the components have a jsfid value set to 'ignore'. 
> The children are still displayed.


This behavior is as designed.  The ignore jsfid is similar to a verbatim block 
in that the content/body is not processed by the parser.  It was originally 
created to suppress the eleven implicit mappings.

The eleven implicitly mapped elements include: 
1.<a></a> 
2.<form></form> 
3.<input type=text> 
4.<input type=checkbox> 
5.<input type=radio> 
6.<input type=submit> 
7.<label></label> 
8.<select></select> 
9.<select multiple></select> 
10.<option> 
11.<textarea></textarea> 

These implicitly mappings can be overridden with a block "ignore". This is 
accomplished by surrounding the HTML that you would like to ignore with a well 
formed tag like the span tag and marking it with the reserved jsfid 
of "ignore". The surrounding tag will not be rendered but the child content 
will be rendered verbatim.
 
<span jsfid="ignore">
  <form method="POST" action="j_security_check">
      Username:<input type="text" name="j_username"><br>
      Password:<input type="password" name="j_password">
  </form>
</span>


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to