Displaying 7 results from an estimated 7 matches for "selectlist".
2008 Jan 14
1
Problems with forms
...ield:0xb7c65540 @name="ShippingDescFrench", @value="">
#<WWW::Mechanize::Field:0xb7c64b68 @name="PaymentDesc", @value="">
#<WWW::Mechanize::Field:0xb7c64014 @name="PaymentDescFrench", @value="">
#<WWW::Mechanize::SelectList:0xb6f87314
@name="listCatg0",
@options=
[#<WWW::Mechanize::Option:0xb6f7a6f0
@select_list=#<WWW::Mechanize::SelectList:0xb6f87314 ...>,
@selected=false,
@text="W\344hlen Sie...",
@value="">,
#<WWW::Mechanize...
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 = " + user...
2013 Jan 16
0
Small clarification to R-exts, questions on ptr_do_selectlist
...package)." I had a bit of difficulty understanding
what "These" refers to. I believe it's meant to refer to "the above
callbacks", only, and I suggest using that wording for easier reading.
3. While reading the sources, trying to understand how to make use of
prt_do_selectlist, it seems that this is not actually used to
utils::select.list(), unless
(.Platform$OS.type == "windows" || .Platform$GUI == "AQUA")
Is this intended?
In fact, from reading src/library/utils/src/stubs.c, it looks like
ptr_do_selectlist (and ptr_do_data(entry|viewer), ptr_R_...
2005 Oct 19
1
TZInfo::Timezone problem selected value
...with TZinfo)
dont want to select Europe/London, and not sorted
<select id="firm_gmt_zone" name="firm[gmt_zone]">
<%= time_zone_options_for_select(selected = @firm.gmt_zone,
priority_time_zones = nil, model = TZInfo::Timezone) %><br />
</select>
the selectlist from TZInfo
this list is sorted, but the value isnt selected
<%= time_zone_select ''user'', ''time_zone'', TZInfo::Timezone.all.sort, :model
=> TZInfo::Timezone, :selected => @firm.gmt_zone %>
anyone any solutions?
thanks
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...