search for: comment_

Displaying 4 results from an estimated 4 matches for "comment_".

Did you mean: comment
2014 Apr 02
1
AD + smbd?
.... Samba was among them. I have managed to recover the AD server, but the smb server refuses to take control. Whenever I run the 'smbclient -L localhost -U%', I get all the correct messages, but no workgroup master. Domain=[OZCO] os=[Unix] Server=[Samba 4.1.2} _Sharename Type Comment_ profiles Disk netlogon Disk sysvol Disk jimc Disk michele Disk Administrator Disk Everybody Disk IPC$ IPC IPC Service (Samba 4.1.2) Deskjet 940c...
2006 Apr 20
5
Integrating with Legacy Databases
...zing ActiveRecord, I would like to specify a prefix for the column names in my table. For example, in ''Recipe 16 Integrating with Legacy Databases'' (Rails Recipes, from PragProg, by Fowler) they deal with integration with a WordPress db where all field names are preceded by "comment_" -- i.e. comment_author_email. The recipe explains how to deal with the primary key (comment_id) via: ActiveRecord::Base.primary_key_prefix_type = :table_name_with_underscore which is great: the primary key would obviously be the most important piece to get working :) However, it stops s...
2006 Apr 07
3
Ajax render a template
In my blog a user can add comments. I want an Ajax call to add the comment to the bottom of the comments list. How to i return a comment thats is in the comment template and add it to the bottom of the page. I have gotten as far as rendering some text back to the form and the comment doesn''t display until i refresh. This is my _newcomment.rhtml form to create a new comment <div
2010 Sep 27
9
Rails 3 - Creating a comment and then returning the Partial with JUST the new comment
...format.js end end Ok and this is where I''m stuck, then the create.js.erb: $(".cmtBox").html("<%=escape_javascript(render :partial =>"comments/comment")%>"); And the partial: <div class="cmtBox" id="comment_<%=comment.id%>"> <%=comment.content%> </div> Where I''m stuck is calling the partial in create.js.erb... How do I pass what Rails needs to populate the partial? Right now I get the error: "Called id for nil, which would mistakenly be 4 -- if you reall...