Displaying 7 results from an estimated 7 matches for "selectlists".
Did you mean:
selectlist
2008 Jan 14
1
Problems with forms
hello all
i''m a newbie on mechanize, but already had some success.
But now i''m in a real problem :
The following HTML-Code is not parsed corect, not all form element are
found. I''can''t change the server-code.
How to fix ?
HTML-Site
------X-----------------------------------------------------------------------X-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD
2003 Sep 01
2
MGCP question
Hi List
I have one question about MGCP in asterisk. I have a media gateway, and I
want to have asterisk to work with the media gateway. As I was told that the
media gateway can communicate with the switch via standard interface
MGCP/ICGP. Question is if the asterisk MGCP supports such MGCP message ???
Thanks.
George Lin
2003 Sep 23
4
Segmentation Fault on reload (gdb output included)
I keep getting segmentation faults when I do a reload.
Here are the core file outputs from gdb:
(I have three of them and they produce the same
output)
(gdb) core core.6044
Core was generated by `asterisk'.
Program terminated with signal 11, Segmentation fault.
#0 0x401519fc in ?? ()
I have no idea what that means, but if somebody could
point me in the right direction, that would be
2005 Dec 15
3
How to delete a record
...many :users
end
class User < ActiveRecord::Base
has_and_belongs_to_many :groups
end
i want this http://wiki.script.aculo.us/scriptaculous/show/SortableListsDemo
with ajax, first column the user who arent in the group, the second column those
who are in the group. (is cooler than 2 oldschool selectlists ;) )
now i want to delete this record ex: (i want to remove the link between the user
and the group, but wanna keem the user and group object
group_id = 5
users_id = 10
User.connection.delete("DELETE * FROM groups_users WHERE group_id = " + group_id
+ " and user_id = " + users...
2013 Jan 16
0
Small clarification to R-exts, questions on ptr_do_selectlist
Hi,
1. I suggest adding the following piece of advice at the end of the section
describing R_getEmbeddingDllInfo() (currently 8.1.3) in R-exts.texi:
---
In order to call registered symbols of the embedding application from a
package, you have to specify @code{PACKAGE = "(embedding)"} in
@code{.C}, @code{.Call}, etc.
---
2. Section 8.1.2 of R-exts.text ("Setting R
2005 Oct 19
1
TZInfo::Timezone problem selected value
hey, i have a record in the database gtm_zone with value ''Europe/London''
i want to have a select box with all the zones and the corrected selected
@firm.gmt_zone = Europe/London
TimeZone from ruby (trying to expand with TZinfo)
dont want to select Europe/London, and not sorted
<select id="firm_gmt_zone" name="firm[gmt_zone]">
<%=
2005 Dec 14
0
how to get these records in has_and_belongs_to_many relation
...many :users
end
class User < ActiveRecord::Base
has_and_belongs_to_many :groups
end
i want this http://wiki.script.aculo.us/scriptaculous/show/SortableListsDemo
with ajax, first column the user who arent in the group, the second column those
who are in the group. (is cooler than 2 oldschool selectlists ;) )
these are my users:
in group: Luc
not in group: Nick, Glenn, Andy
for the second colum i got this in my controller:
@group_users = Group.find(:first, :conditions =>[''firm_id = ? and id = ?'',
@firm_id, @selected_group]).users
and in rhtml:
<% for user in @group_users...