The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
47 views

Ruby, How to add a param to an URL that you don't know if it has any other param already

I have to add a new param to an indeterminate URL, let's say param=value. In case the actual URL has already params like this http://url.com?p1=v1&p2=v2 I should transform the URL to this ...
1
vote
0answers
30 views

How to retrieve elements from sortable into array

So i have been working in this:(http://jsfiddle.net/2phuW/5/) for the last couple hours. Could anyone help me out to figure out the following: 1) in the source sortable the abbreviation wat, ura, or ...
2
votes
1answer
17 views

drupal_mail - Need to Remove $_POST

I am new to the drupal_mail function and need help. The code I have works, but I want to get rid of the $_POST parameter to limit my security holes. I don't know how to get the posted variables ...
0
votes
2answers
40 views

How Cake PHP pass parameters from one controller action to another view

I have a search method in my WorkersController.php like following: public function search() { $conditions = array(); if(!empty($this->request->data)){ ...
0
votes
1answer
19 views

Rails route Category find by name issue

I want my users to be able to view /categories/comedy/ and see all posts available in the comedy category. Problem is that in my database all categories are with a capital, so comedy is Comedy. This ...
3
votes
3answers
87 views

Checking multiple params in Ruby

These params come out of html inputs in erb templates (this code is in the main application.rb), and I am checking if they are filled before I add them to n.requestusers, which will become part of a ...
1
vote
1answer
29 views

Changes to params in grails only seen in controller not in views

Part of my UrlMappings looks like this: "/$lang"(controller: "main", action: "front") { constraints { lang inList: ['hr', 'sl', 'si'] } } Because I want to set lang ...
0
votes
1answer
52 views

Ruby object initialization: params, hash, vanilla?

I ran into some confusion over when/why or if it is just a matter of preference when initializing a method with a hash type structure. class Person1 attr_reader :name, :age def ...
0
votes
1answer
42 views

Android views from .xml to .java - dependencies

I just worked a little on an application just to train. Fast I noticed .xml created views have an influence on performance so I decided to code them in the activties. But I dont know how to set up all ...
1
vote
1answer
33 views

Save record in rails 4.0 using params hash

I'm trying to create a new record in rails using the form_for helper method. I think the params hash is blank because I keep getting blank errors when I submit the form. This is my form: <% ...
1
vote
2answers
77 views

C# passing function with variable argument list as an argument

I am trying to hide complexities in functions to make for easy function calls. For example a function Log(string msg) for writing text messages to a textbox control, with a newline, and Invoke() for ...
0
votes
1answer
29 views

Rails - pass a parameter to a form

I have following situation: In the application there are clients and projects. A client can have many projects and a project belongs to a client. I've created everything with scaffolding and the ...
0
votes
2answers
18 views

Stop Rails checking for params in URL?

The Application Concept: I'm building a Ruby on Rails [3.2] application at the moment, which consists of 2 very basic controllers - accounts for the user authentication, and messages which belong to ...
0
votes
2answers
110 views

Reading value from text field of form_for in rails 3, params[:x] not working

I have sign up form in Rails 3.2.9 . It contains a text field for login name called 'login' in a form-for ,I want to use the value in that field to check in database for duplicates for check login ...
2
votes
2answers
53 views

How to retrieve Ruby/Sinatra params from array of params?

My ExtJS frontend sends such a param hash to my Sinatra backend: {"_dc"=>"1365959782607", "page"=>"6", "start"=>"250", "limit"=>"50", ...
0
votes
1answer
21 views

Redirect after login using params

Currently, when you login as a user, regardless of where from, you are taken to your homepage. I would like to check for params in the url and redirect based on that param. Here's the code: def ...
0
votes
2answers
68 views

Yii how to count related models (getRelation with params)?

I have a HAS_MANY relation called "relationName", So I can get all related models using $model->relationName; or using $model->getRelated('relationName'); I can also get a subset of ...
0
votes
0answers
30 views

Unescape all params in hash, rails

I have a set of parameters that I'm slicing...and I want to unescape them all...is that possible with CGI::unescape links_attributes = params.slice(:type, :original_url, :title, :description, ...
0
votes
1answer
42 views

using build in has_many relationship in create action results in mass assignment error

I have a mass assignment error I can only fix with UGLY code. I must be doing something wrong. Let me explain: I my rails application clients have many contacts. The Client page shows a list of ...
1
vote
1answer
33 views

This.Page.Request reading incomplete encoded params c#

I have this problem, This Request["MyParam"] working , but this method have a problem with Encoded values from a webrequest like : MyParam=help & development , I get just the 'help' word, ...
0
votes
1answer
46 views

Filtering using collection_select params

I have simple form which allows users to filter search results according to location_id which is given in collection_select form's field. I want to render narrowed results if specific location is ...
1
vote
2answers
118 views

Get value of a hidden field tag Ruby on Rails

I am lost, I do not know what I'm doing wrong! I have 4 radio buttons and a hidden field (value = "1"). When you click on the second radiobutton, the value of the hidden field changes to 2 and so on. ...
13
votes
2answers
180 views

Changing the params modifier in a method override

I'm aware that a params modifier (which turns in one parameter of array type into a so-called "parameter array") is specifically not a part of the method signature. Now consider this example: class ...
1
vote
2answers
79 views

Sinatra and question mark

I need to make some methods with Sinatra that should look like: http//:localhost:1234/add?string_to_add But when I declare it like this: get "/add?:string_to_add" do ... end it doesn't see ...
0
votes
1answer
108 views

List of list string c#

I'm creating some methods for using CarlosAG ExcelXMLWriter, I want to improve this method in particular public void insertaRango(Worksheet sheet, List<object> values, int columnMerge = 0, ...
-1
votes
3answers
72 views

Assigning string[] array into a function with params string[] [closed]

I have a function void Test(int id, params string[]). I have an array of string to be assign to the argument. May I know what is the correct way to call Test().
0
votes
1answer
36 views

Id format of Sinatra's form inputs

We try to write nested forms in Sinatra. We can pass easly some values as model fields: id="user[name]" But what if we want to submit also related models? Assume we want to add a user and his 3 ...
0
votes
1answer
18 views

wrong params in url with Rails

Here is my url : /creations/stock?id=3 When I click to my link creations_stock_path(:id => creation.id) I have an error Couldn't find Creation with id=stock. I really don't understand the problem, ...
0
votes
2answers
63 views

PayPal get params after success returned

I am currently implement PayPal into a form for articles subscription, below codes are run fine to direct to paypal web screen and process the transaction. HOW if I want to get back certain params ...
2
votes
2answers
97 views

C# params with a required minimum of one value

Is there a more elegant way of ensuring a constructor is always called with at least one value than what I've got here? I have done it this way as I want a compiler error if no values are provided. ...
0
votes
1answer
43 views

Rails: Datetime params are empty?

In my post view, I have a _form with a title and releaseDate parameter. In my controller I get the value from params[:post][:title], but the params[:post][:releaseDate] is empty. post _form <%= ...
2
votes
2answers
95 views

Using DateTime With input from a textbox.text

I have this code that when executed gives me 74 Days, which is correct, but the date for oldDate has to come from a TextBox. Does anyone know how to do this as the DateTime only takes three integers. ...
0
votes
0answers
13 views

Updating attributes on a join table

I have a self referential join table for a friends model class User has_many :friendships has_many :friends, :through => :friendships end class Friendship belongs_to :user ...
-1
votes
1answer
42 views

How to fetch a data from parameters

I want to pass the value of text retrieved from view in controller to database. Parameters retrieved from view are Parameters: {"utf8"=>"✓", ...
2
votes
1answer
128 views

How to Rescue from ActionDispatch::ParamsParser::ParseError in Rails 4

Rails 4 adds an exception ActionDispatch::ParamsParser::ParseError exception but since its in the middleware stack it appears it can't be rescued in the normal controller environment. In a json API ...
0
votes
1answer
18 views

Update action in controller not changing

I am trying to change the status of an attribute called listing_status from Active to Terminated. I tried it like this and it is not working. Any idea what I am doing wrong? ...
0
votes
2answers
64 views

Rendering rails partial with dynamic variables

I'm trying to render a partial based on the taxon the user is inside. In my application.html.erb layout I have the following line of code: <%= render 'spree/shared/women_subnav' if @enable_women ...
0
votes
3answers
34 views

Retrieving first part of two-part params[:id] in rails

I'm sure this has been answered before but I've looked everywhere, so I apologize in advance. When I run: <%= params %> I get back: {"controller"=>"spree/taxons", "action"=>"show", ...
0
votes
1answer
74 views

Render a rails partial based on the id of an action

I'm building a small ecommerce site that sells a variety of mens and womens clothing. i would like to render a partial based on which taxonomy the user is in. For example, if the user is at ...
-2
votes
1answer
58 views

Can't send array value in function [closed]

I am trying to send an array value in a parameterised function but i dont know why i am not able to do it. The sample code is : <ul> <?php while ($row = mysqli_fetch_array($result, ...
0
votes
1answer
29 views

I'm getting a hash outputted to my view if I run params[:query], but if I run #values on it, it breaks and says “I'm a String”

So I'm trying to set the default search field value to the pre-existing one if it exists <%= form_tag universities_path, :method => "get", :class => "form-search" do %> <%= label_tag ...
0
votes
1answer
22 views

Ruby :id is coming null from params[:id]

I'm writing a form and I seem to be missing my params[:id] when it gets to the Content Controller. This is my routes.rb: match '/site/content/myaction/:id', :to => 'contents#myaction' The form ...
0
votes
0answers
115 views

server got irrelevant parameters from client Ext.Ajax.request on IE

This issue happens on IE 8 and IE 9. Works fine on firefox. The client code is like this: Ext.Ajax.request({ url: myUrl, method: 'POST', params:{ ...
1
vote
0answers
140 views

passing search params to another form using jquery autocomplete

I am trying to pass a form parameter from an auto search field to another form and instead of the parameter, #<Restaurant:0x4708a10> is showing up. Background info: I have two models: ...
1
vote
2answers
62 views

params Parameter with default parameter values

I've seen the params parameter more times than I can say and always removed it without thinking about it's meaning. Now I've learned its purpose. What I just learned is that the params parameter must ...
0
votes
1answer
39 views

Form with nested models doesn't update nor give nested params

In rails 3.2.* I have a has_one belongs_to nested model like so: class Unicycle < ActiveRecord::Base attr_accessible :brand, :wheel, :wheel_attributes has_one :wheel ...
2
votes
2answers
103 views

mixing optional parameters and params keyword in c# [duplicate]

I am trying to mix optional parameters and variable length parameters (using params keyword): Here's the function declaration: void foo(int req, string opt = "empty", params object[] rest) {} And ...
1
vote
3answers
75 views

Using params in a Delegate as a base class

I have a delegate expecting parameters of type A as parameters. So A is the base class. Class B and C inherit from A. The problem is that although B and C inherit from the base class A, the ...
1
vote
2answers
115 views

Using JavaScript in params attribute in Grails

I hope that someone can assist. I have following code which is not accepted: <g:link title="Periodendaten speichern" action="speicherePeriodendaten" params="'\'pStart=\' + ...
1
vote
2answers
97 views

Trouble Accessing Ruby Params on RhoMobile

I'm new to Ruby so please excuse my ignorance. I really didn't know how to word this question so this may also be part of the reason I haven't found an answer online. I'm working with Rho Elements, ...

1 2 3 4 5 11