Displaying 20 results from an estimated 200000 matches similar to: "delete message inbox"
2008 Feb 12
3
Rails Messaging (INBOX) system
Hi All..
I need to implement messaging system in one of my rails
applications(To say simply it must be similar to orkut messaging
system). Even if i am having a rough idea on how to implement it, i need
any one your guidance to the way of approach. Could any one suggest me
with good stuff or links which may guide me to implement the mentioned
feature. I greatly appreciate any replies
Thank
2007 May 25
3
check box value in array
Hi guys,
I have a group of check box in rails page.
check box Code as below:
<% for count in @total_cellno %>
<input name="checkbox" type="checkbox" value="<%= count %>" />
<% end %>
I want to receive the selected value in my controller model.
@selected_box << params["checkbox"]
I guess that it provides values
2009 Apr 18
3
Create CheckBox
Hai,
I want to create a checkbox the values are table field values. In my
controller
@emptypes = Emptypes.find(:all)
In View
<% @emptypes.each do |c| %>
#Write checkbox generating code here
<%= check_box("contacts",emptypes.types)%>
<%end%>
Anyknows please suggest me how to create a checkbox (values are
retrived from table).
-with Thanking&Regards
2007 Jan 11
2
checkbox to toggle div
I''m trying to show a div if a checkbox is selected. I got as far as:
<%= check_box(''foo'',''temporary_bar'',{:onclick =>
"Element.toggle(''temp_bar''); return false;"}, 1, nil)%>
<div id="temp_bar" style="display:none;">
<%= text_field ''foo'',
2009 Apr 15
0
Multiple CheckBox and Radio Buttons
I am using multiple check box (more than 1 checkboxes) and a radio
button and when I click the "Submit" button, it calls the "create"
method it is inserting only 1 value for checkbox and also for the radio
button.
Could you please tell how to insert multiple check box values in create.
Also, in the scaffold edit page, the default "edit" method displays
all
2008 Jun 27
0
Update database on checkbox update
I have search the web for help, with the keywords "rails ajax
observe_field update checkbox", but even using all the things I found,
I couldn''t really get my application for work properly...
I think I lack of understanding of ajax and rails interaction with
ajax.
What I would like to do is very simple.
I have a model "Word", with the boolean field
2008 Mar 02
2
check_box_tag remote_function
I have a collection of check_box_tags that look like the following:
<% for item in @items %>
<%= check_box_tag "item[item_ids][]", item.id, false, {:onchange =>
remote_function(:url => update_items_path, :with => "''items='' +
escape(value) "} %>
<%= item.name %>
<% end %>
My question is, how do I send all of the current
2007 Dec 17
6
Checkbox array and Ajax.updater
Hello all,
I have some checkbox array like these:
<input type=checkbox name=list[] value="1">Java<br>
<input type=checkbox name=list[] value="2">JavaScript<br>
<input type=checkbox name=list[] value="3">ASP<br>
<input type=checkbox name=list[] value="4">HTML<br>
<input type=checkbox name=list[]
2007 Mar 30
10
check_box_tag not passing 0 when unchecked?
Code:
<%= check_box_tag("person[#{person.id}][is_approved]", 1, true) %>
Rendered output:
<input checked="checked" id="person[7][is_approved]"
name="person[7][is_approved]" value="1" type="checkbox">
Problem:
The value of "1" is always passed, even if the box is UNCHECKED.
Suggestions? Thanks!
--
Posted via
2007 Mar 08
0
passing checkbox value to next page
Hai
I have one search page and am using pagination for navigate through
all the result each page have 10 result .Each search result have one
checkbox ,Now i am selecting some of the checkbox in first page and i am
going to second page and from that page am selecting some of the check
box, Now the Issue is if i am coming back to first page i want to see
the result with checked(which was
2008 Jun 23
2
Messaging system
Hey All,
I''m trying to put a messaging system together using this
http://www.novawave.net/public/rails_messaging_tutorial.html.
All working fine but I''d like to be to thread the replies.
At the moment, a message goes out, someone replies to it and the
original is simply included in the reply. I''d like to be able to thread
the replies using acts_as_tree or something but
2007 Jun 11
2
Column sort of checkboxes
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
I''ve gleaned a lot of good advice from reading this group and I''m
hoping for more
2006 Nov 16
3
Scriptaculous 1.6.5 Checkbox problems
I''d report this on the rails trac site but it won''t let me open a new
ticket. I figured this was important enough to bring this up now.
I replaced the prototype version in Scriptaculous 1.6.4 with the
version in 1.6.5 in a rails site I''m working on. I noticed though that
even though I was clicking the checkbox to confirm the acceptance of a
terms of service that I kept
2008 Jan 08
1
HOWTO: Add a new line, Remove new line?
Hello everyone,
I have a couple of checkboxes, where each checkbox belongs to a
specific input field (which has a value). So whenever the user clicks
on the checkbox, each value of the associated input field is added up
and placed in the ''result'' ID. I''m using unobtrusive Javascript to
make this happen...
However I want to able to add and remove a new line (checkbox
2009 Mar 13
2
storing and retrieving arrays in mysql using rails
Hi,
I have a multiple checkbox of values 1 to 7 for selecting weekdays.
What is the possibility of storing the selected weekdays array in
mysql
and what type of field should i create in the table for storing the
array.
Any suggestions???
Regards,
Vimal Das
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2006 Nov 27
0
Problems using check_box
Hello!
Since this is my first post here and I''m fairly new with the whole RoR
concept, please bare with me (just wanted that to be out in the open)!
;D
I''m trying to make a checkbox for each input in another
model/database-table.
I have a database table called Roster which includes the colums "id" and
"name".
And then I have a table called matches that
2006 Dec 14
1
Prototype CSS selector to descend tree?
Hi, I''m calling on those with Prototype/CSS selector foo to help with a
somewhat tricky issue.
I have a tree structure where each item is hierarchical. This is used
to manage software components. Think of the case where you''re
installing a piece of software, and want to customize which packages
are installed:
[ ] Internet
[ ] Email
[ ] Thunderbird
[ ]
2009 Jan 11
2
How can I delete a file?
I want to delete a file that is in
public/system/photos/original/1/photo.jpg. How can I delete it?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2006 Dec 27
0
HABTM Checkboxes - Adding/Updating Users to a Project
Hello all,
I''m trying to create a HABTM checkbox action that adds/updates ''users''
to a ''project''.
I have the following laid out.
---------------------
TABLES
---------------------
create_table "assignments", :id => false, :force => true do |t|
t.column "project_id", :integer, :default => 0, :null => false
2008 Nov 26
0
looking for a plugin that does multi-list/select managment
Hi
I''m looking for a plugin that will take the pain out of constantly
re-implementing a UI ''functionality'' (for lack of a better term) that
I''m using often.
This functionality consists of two select (listboxes) - side by
side. The one on the left has a list of items that the user can
choose from and then by clicking on a button - move the selected