Questions tagged [param]
304 questions
0
votes
3 answers
php params not getting called
I have link as test.php?fullname=Fahim&emailid=test@test.com
In test.php I have below
$fullname = $_POST['fullname'];
$emailid = $_POST['emailid'];
echo "$fullname===$emailid===";
I always get response as ======
I was expecting as…

Fahim Parkar
- 30,974
- 45
- 160
- 276
0
votes
1 answer
Filter xml in .Net with param
I am trying to filter an xml file in a .Net application I am developing. Some sample xml below, obviously not the proper xml, but near enough :-)

GrahamCFNewc
- 135
- 6
0
votes
1 answer
Send a javascript object to the server and deserialize using a GET request
I'm working on an MVC4 app using jquery & ajax to do searches and update the page. Normally to search I create a javascript object and post it to my ApiController where the post parameters are mapped to my .NET search input object.
I need to send…

Owen
- 4,229
- 5
- 42
- 50
0
votes
2 answers
Failure when pass param between functions in js
when i launch my applicattion appears the next failure: "record is null or is not an object", appears in the next line " var record = context.record;" Somebody could explain or find the failure... i try to pass the var "mola" from beforeedit to the…

Distopic
- 717
- 3
- 16
- 31
0
votes
1 answer
Forward parametr in page
I have a panelAdmin page and when i click adminList i forward the parameter
…

The Nightmare
- 701
- 5
- 16
- 36
0
votes
2 answers
How to create a html obejct with javascript in a jsp page
all, I want to create a html obejct with javascript in a jsp
page, but 'alert(GameObject1.loginurl);' will alert 'undefined'.
Do I get some misstakes in the code below?
It seems that 'obj.appendChild' has failed.But Why?
var obj;
try {
obj =…

samir
- 3
- 3
0
votes
1 answer
Passing a class constant in param
I've a very little problem in java. I think i'm not still really awake.
I have two classes:
The first one use constants from a jar (example : Highgui.CV_LOAD_IMAGE_COLOR). In the second one the user select in a list which constant he want to…

SylCh
- 273
- 1
- 4
- 10
0
votes
1 answer
Is it possible to retrieve a Freemarker parameter value in a directive?
I am having something similar to the following in one of my templates:
<#assign myVar = ${myValue}-1>
but Freemarker is not happy and gives me:
Exception in thread "main" freemarker.core.ParseException:
Encountered "{" at line 43, column 43 in…

Jérôme Verstrynge
- 57,710
- 92
- 283
- 453
0
votes
1 answer
jsf 2 managedproperty annotation and parameters
I'm using JSF 2 and Sprig 3, and I want to migrate from using faces-config.xml to annotations.
old one : faces-config.xml :
banqueBean
…

faissal
- 261
- 5
- 20
0
votes
2 answers
zend framework get id in /delete/2
I'm actually using zend, and I wonder how to get the id in such url :
/delete/2
I know I can do it using :
// if URL is /delete/id/2
$request->getParam('id');
But what I want is to have url like the first one /delete/2 which sounds more logical…

lkartono
- 2,323
- 4
- 29
- 47
0
votes
1 answer
Pass extra param sencha touch
I am new to Sencha touch. Please see my code below.
Model.js
Ext.define('bluebutton.model.BlueButton.MemberList', {
extend: 'Ext.data.Model',
config: {
idProperty: 'memberlistModel',
fields: [
{ name…

user998405
- 1,329
- 5
- 41
- 84
0
votes
2 answers
0
votes
2 answers
set linear layout elements spacing dynamically android
I am creating a layout dynamically, I am using
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
to place my elements one below the other. But for my header, i am using a new…

bharath
- 953
- 4
- 17
- 30
0
votes
2 answers
XSLT Param name with value of node
XML:
valueOfA
valueOfB
valueOfC
I need to create param for each param node in xml.
So the expected result:

Sergej Popov
- 2,933
- 6
- 36
- 53
0
votes
1 answer
Change a Value of the columnModel JQgrid after draw
when i draw the grid i have some column like this..
name: 'codigo', index: 'codigo', width: 50, align: 'center', editable: true }
But after i want to do a query and then set the editable option, for example to false, is this possible?
Thanks.

bombai
- 927
- 1
- 17
- 27