View Single Post
  #10 (permalink)  
Old 11-02-2008, 01:54 AM
TodaysKing
 
Posts: n/a
Diggs:
Default Re: Bind failes in cflayoutarea after form submit

[q]Originally posted by: RUNd
In an edit user page I've got a seperate form inside a cflayoutarea displaying
the comments about this user. In this form I have a cfselect and a cftextarea,
when changing the selected item in the cfselect the cftextarea shows the
comment. This all works fine untill I submit the form (when adding or updating
a comment) the comment is saved and the form is replaced by the same form in a
seperate .cfm. After submitting I get a javascript error and this is what the
coldfusion Ajax logger has to say about it: error:bind: Bind failed, element
not found: userCommentId

This is the form in the new page, I use the exact same form in the original
user detail page.

<cfform action="#request.self#?event=#XFA.saveComments#" name="commentsForm">
<input type="hidden" name="userId" value="#attributes.userId#">
<fieldset>
<legend>Comments</legend>
<div class="fm-req"><cfselect query="userComments"
name="userCommentId" selected="" value="userCommentId" display="dt_lastchanged"
size="1"></cfselect></div>
<div class="fm-req"><cftextarea richtext="false" name="comment"
bind="cfc:cfcs.users.getUserComment({userCommentId })" /></div>
<div id="fm-submit" class="fm-req">
<cfinput type="submit" name="submit" value="Save comment">
</div>
</fieldset>
</cfform>

Thanks for reading, hope to get some good insights!

Lauw[/q]

Thank you very much RUNd for this great coding, i used this and it is working
absolutly fine.

Good Luck!

Regards!

http://www.bluepornblogs.com/ | http://www.getxxxblogs.com/ |
http://www.pinkbloglisting.com/ | http://www.adultblogbox.com/

Reply With Quote