java - Can Not Read id on JSF Components - Stack Overflow

I have a little problemI am trying to use MartkItUp JQuery rich text editor on JSF textarea ponent.My

I have a little problem I am trying to use MartkItUp JQuery rich text editor on JSF textarea ponent. My form looks like this:

 <h:form id="ment">
    <h:inputTextarea id="mentBody" cols="10" rows="10" value="#{postCommentmentBody}" required="true" requiredMessage="Comment Body is reqguired" >
      <f:validateLength maximum="500" minimum="2" />
    </h:inputTextarea>
                <%-- more of the form... %-->

The problem is that on output it gives me the id for textarea like that

id="ment:mentBody"

When I try in JQuery to point to it nothing happens.

$('#ment:mentBody').markItUp(mySettings);

I had a plain textarea before, and there was no problem. Now, I have a lot of them.

How do I point to id in JQuery, thats looks like ment:mentBody

P.S: I know i can point to this text area by $('textarea').markItUp(mySettings); however i am looking for solution to point to specific text area by it's ID.

I have a little problem I am trying to use MartkItUp JQuery rich text editor on JSF textarea ponent. My form looks like this:

 <h:form id="ment">
    <h:inputTextarea id="mentBody" cols="10" rows="10" value="#{postComment.mentBody}" required="true" requiredMessage="Comment Body is reqguired" >
      <f:validateLength maximum="500" minimum="2" />
    </h:inputTextarea>
                <%-- more of the form... %-->

The problem is that on output it gives me the id for textarea like that

id="ment:mentBody"

When I try in JQuery to point to it nothing happens.

$('#ment:mentBody').markItUp(mySettings);

I had a plain textarea before, and there was no problem. Now, I have a lot of them.

How do I point to id in JQuery, thats looks like ment:mentBody

P.S: I know i can point to this text area by $('textarea').markItUp(mySettings); however i am looking for solution to point to specific text area by it's ID.

Share edited Jan 4, 2013 at 20:37 Mario S 12k24 gold badges41 silver badges47 bronze badges asked Jun 10, 2009 at 2:59 Dmitri S.Dmitri S. 3,4485 gold badges37 silver badges41 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 12

Try this, $('#ment\\:mentBody'), for JQuery version 1.1.3 or greater.

try this:

$("textarea[id$='mentBody']").markItUp(mySettings);

this will select text area having ID ending with mentBody.

to select control with ID starting with particular string replace $ with ^

You can read about JSF IDs here, but in this case you may also find the h:form prependId attribute useful.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743685573a4490090.html

相关推荐

  • java - Can Not Read id on JSF Components - Stack Overflow

    I have a little problemI am trying to use MartkItUp JQuery rich text editor on JSF textarea ponent.My

    19小时前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信