similar to: query strings built by R method can''t handle multiple values from checkbox selections

Displaying 20 results from an estimated 90 matches similar to: "query strings built by R method can''t handle multiple values from checkbox selections"

2008 May 23
0
R(c,*g) helper method can''t handle nested hash input params
params= {"search"=>"Search", "date_begin"=>"2007-05-01", "date_type"=>"created_on", "order"=>1, "report_type"=>"year_end", "person"=> {"reply_status_id"=>"1", "created_on"=> Tue, 01 May 2007 00:00:00 +0000..Fri, 23 May 2008
2008 Mar 14
0
new winetricks 20080314: added vcrun2003, improved dotnet11, fixed gui multiple selections
This version finally adds a way to get Visual C++ 2003 runtime libraries (msvcp71, mfc71). It also finally adds in all the twisty little workarounds needed to run trivial .net 1.1 apps. If you have a .net 1.1 app, please give this a try: sh winetricks dotnet11 Also, it looks like enough people are using the gui to send in bug reports for it, which is great; as a result, multiple selections
2010 Aug 29
0
Multiple geometry, selections and georss
Hello- I have not used Mapstraction yet, and am new to geographic display software. I just sank sank several frustating Firebug-hours into another open source toolkit and am casting about for alternatives. Please tell me how to use Mapstraction for a particular use case.. The use case is a map of places with lines to the nearest surrounding places. I would like to just show all of the places.
2005 Apr 01
0
Selections from tcltk list boxes
Dear r-devel list members, I've experienced the following problem in getting a selection from a Tk list box using tcltk. This is a long-standing problem, but I've finally decided to tackle it. Consider the following: Library(tcltk) top <- tktoplevel() listbox <- tklistbox(top, height="10", width="2", exportselection="FALSE",
2010 May 17
0
looking for Variable selections models, techniques, methods
We still have a long way to go with the data we were given by some drug discovery scientists. The problem is to select the few variables (Collective Variables), from a set of variables sampled during a Molecular Dynamics simulation, which exhibit a consistent and coherent relationship with the given minimum-work curve, all over the time it takes the molecule to migrate from the initial
2013 Feb 25
1
setting sound indicators for Isolinux menu selections
Hello, I am an active member of the Vinux community and have taken on a project of remastering a Ubuntu installation Cd in order to make it accessable to a blind user. I am able to sound the system bell when the boot menu loads by adding a ^G to the label statement which works well to tell a blind user they are at the boot menu. My intent is to sound the bell at each menu item, but I'm unable
2002 Jun 02
2
selections using text strings (result of noquote)
G'day all, I am trying to use a string as an argument in a selection but things are not working as I expect, seems the selection is not seeing the expanded string and I do not know how to make it. Perhaps the noquote class value that is returned is the problem. Here is an example. > selection #this is my string [1] "attackprogress$Se=='Toona ciliata [19825: JMM35]'"
2006 Nov 23
0
[752] trunk/wxruby2: Fix for Bug #6810: ListBox#get_selections should return an array of selections
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2005 May 04
4
selections of data by one variable
Dear R experts, My problem is as follows: Suppose I have a data frame d comprising two variable a<-c(1:10) & b<-c(11:20). I now want to select a subgroup according the values of b. I know if I just want to select, say, b=17, I can use f<-d[d$b==17] and R will give me > f a b 7 7 17 However, if now I want to select a subgroup according to b==e<-c(13,15,17), then the
2011 Aug 25
3
Selections in lists
Hi, I have produced a list g and I would like to reduce the amount of information contained in each object in g. For each matrix I would like to keep the values where the column name equals g[year][[1]][[x]] and the row names equals g[year][[1]][[-x]]. So in g$`1999`$`8029`, year = 1999 and x = 8029. I have been experimenting with the subset function, but have been unsuccesful. Thanks for your
2012 Aug 26
3
Two selections from Bag A
All, I am looking at an example in Aliaga's Interactive Statistics. Bag A has the following vouchers. BagA <- c(-1000,10,10,10,10,10,10, 10,20,20,20,20,20,20,30, 30,40,40,50,60) Bag B has the following vouchers. BagB <- c(10,20,30,30,40,40,50,50, 50,50,50,50,60,60,60,60, 60,60,60,1000) Two values are selected (from BagA or BagB) without
2007 Aug 06
0
new patch adding control_for :boolean to create a checkbox
I''m sorry I didn''t have time working on the tests/models generator but here is a tiny patch I wrote to help you creating form check boxes. http://merb.devjavu.com/projects/merb/ticket/114 -Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/merb-devel/attachments/20070805/e42cd930/attachment.html
2006 Jul 19
1
Updating a model from a checkbox (noob question)
Hello everyone, I''m trying to wire a combobox in a view to update the database. When I select something in the combobox and press ''update'' it goes through fine, except it places the default value for the field of the combobox. Any suggestions? Here''s the model: class TestResult < ActiveRecord::Base has_one :status_index has_one :test_type has_one
2006 Jul 31
0
Autosubmitted checkbox
OK - i have this form, and i works perfect :) <%= form_remote_tag(:update => "status", :url => "/image/worksafe/" + image.id.to_s) %> <%= check_box_tag :worksafe, value = "1", checked = image.worksafe%> <%= submit_tag "Change status", :name => image.sha %> <%= end_form_tag %> however - the submit button is kind of annoying,
2006 May 05
0
is this good for a conditional checkbox?
i''m pretty new to RoR and the MVC style of programming in general. i have one page with a list of applications that several users can access. in my view, i have a conditional that decides whether the checkbox is checked or unchecked. being new to this, i just did it the only way i could think of and want to see if there''s a better way of accomplishing it. <%
2006 Apr 21
0
checkbox with has_many
Hi, How do I set up a checkbox to use a record with a has_many field? For example, say I have a User which is an Active Record Model. And say it has many names. class User < ActiveRecord::Base has_many :names end class Name < ActiveRecord::Base belongs_to :user end Say I want to update this user and I want checkboxes that give a choice between different names. How would I do that?
2007 Feb 15
1
How to select randomly named checkbox
I am trying to select a checkbox that is randomly named depending on the ID assigned to it by the webpage. [9713816764515361h] is the random bit. #<WWW::Mechanize::CheckBox:0x7a2b3c0 @checked=false, @name="communityContentFields[9713816764515361h].postToArea_checkbox", @value="true"> What code should I use to check the box? Thanks Chris
2006 Feb 25
1
checkbox helper question
I used scaffolding, then modified. As an after thought I added a "boolean" checkbox to my database, form with this tag <p> <%= check_box ''is_hot_item'', @photo.is_hot_item %> <label for="is_hot_item">hot item?</label><br> </p> I check it and save. But I don''t get 1 saved in my database field. :( I have just the
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
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