The param tag has no wiki summary.
1
vote
1answer
35 views
What is the purpose of @param annotation in Java code?
/**
*@param context
*@param attrs
*/
Public DotView(Context context, Attribute attrs) {
super(context, attrs);
setFocusAbleInTouch(true);
}
Does the @param serve any purpose. I saw this ...
0
votes
0answers
8 views
Inoperative p:command link when use param[] in rendering
I have a page displaying some profile, so it's URL
../faces/savedProfile.xhtml?profileId=1234
On that page I have p:pane containing a few p:commandLink components, something like this:
<p:panel ...
1
vote
2answers
31 views
xslt-param processing instruction - pass a value from xml document to xsl stylesheet
Im doing a uni assignment and cannot (for the life of me) find any information online about the "xslt-param" xml processing instruction. There is information about "xsl:param" but its not the same ...
0
votes
0answers
25 views
Embedding external RTMP, RTSP Media types links to a website
My question is how could i embed external rtmp or rtsp urls ,like rtmp://111.222.333/live
into my website using embed code like( iframe, embed, object and param) (no Javascript) .This is possible but ...
0
votes
1answer
59 views
How to pass a managed bean as param at a facelet template
I'm having a lot of trouble trying to pass a managed bean as param at a facelet template.
I'm trying to create a variable at a facelet template and pass its value through ui:param, but i'm constantly ...
0
votes
2answers
71 views
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 ...
0
votes
2answers
48 views
How Exactly Does @param Work - Java
How does the annotation @param work?
If I had something like this:
/*
*@param testNumber;
*/
int testNumber = 5;
if (testNumber < 6) {
//Something
}
How would the @param affect the ...
0
votes
1answer
68 views
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 ...
0
votes
1answer
56 views
Field edited with jquery shows up undefined in post on nodejs
I'm currently working on a small website using Node.js, using express, jade, Boostrap and JQuery in the relevant technologies for this question.
I have the admin.jade page with several forms, the ...
-2
votes
1answer
82 views
mysqli Fatal error: Call to a member function bind_param() on a non-object
I have a problem with a prepared statement, here is my code:
function query_array($table, $data) {
foreach ($data as $column => $value) {
$columns[] = sprintf("`%s` = '%s'", $column, ...
0
votes
1answer
30 views
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" ...
0
votes
1answer
58 views
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 :
<managed-bean>
...
0
votes
2answers
59 views
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 ...
2
votes
2answers
127 views
JSF attribute `rendered` in `rich:menuItem` can't read `boolean` value from parameter
I am using JSF 1.2_09, rich faces 3.3.3, jsf-facelets 1.1.14.
Looks like attribute rendered in rich:menuItem can't read boolean value from parameter enableEdit...
Even if enableEdit has true value, ...
0
votes
1answer
203 views
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: ...
0
votes
2answers
135 views
How to change variable value in xsl-loop
I have an xsl which looks something like:
<xsl:param name="relativeURL"/>
<xsl:param name="isPersonalPage" />
<xsl:template match="/">
<xsl:call-template name="main_level" ...
2
votes
4answers
103 views
How to getParams type of array
In Magento, as usually we used to get param
http://magento.com/customer/account/view/id/122
we can get the param by
$x = $this->getRequest()->getParam('id');
echo $x; // value is 122
now ...
0
votes
2answers
114 views
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. ...
-1
votes
1answer
34 views
parameters from URL in a Perl Script [closed]
I have this script, and everytime i run it, the script returns me a blank page.
This is the script.
Do I have to setup something more on Apache ?
Thank you a lot!
#!/usr/bin/perl -w
print ...
-1
votes
2answers
369 views
How to pass multiple params into display:column tag in struts2
I am trying to pass in multiple (3 ) parameters to a url from display:column tag.
I am trying to use code like this. but the object is passed as null. Any help would be highly appreciated.
...
0
votes
2answers
75 views
XSLT Param name with value of node
XML:
<root>
<param name="a">valueOfA</param>
<param name="b">valueOfB</param>
<param name="c">valueOfC</param>
</root>
I need to create param ...
1
vote
0answers
214 views
sencha touch~Reset extra param when load more event fire
I need to reassign extra param when load more even fire. But I dont have any idea
Here is my code
List.js
Ext.define('bluebutton.view.BlueButton.TestingList', {
extend: 'Ext.List',
xtype: ...
0
votes
2answers
143 views
Passing an array to a PowerShell script
I am trying to pass an array to a powershell script but always getting just one value. I have googled my butt off, but can't find anything. All I need to do is pass an array to the script. Here is my ...
1
vote
0answers
97 views
Update JSF Metadata View Parameter Without Redirecting The Page
Please, is it possible to update JSF metadata view parameter without redirecting the page. For instance
I have a ManagedBean which checks if an ID exist
public void signIn(){
Client c = ...
0
votes
1answer
181 views
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, ...
0
votes
1answer
77 views
How do I get a parameter's value from a CGI Perl app?
I am trying to get value from a form. My HTML is as below:
<select name="new_id" ><option value="464">464</option></select>
I am trying to get the value using:
my ...
0
votes
1answer
166 views
How do I get selected value from drop down box in Perl CGI
I am populating the drop down menu from database. And when I submit the form I am getting empty string in selected option. Here's my code any help will be appreciated. I have selected the first option ...
0
votes
1answer
87 views
How to assign a bean message to a jsp parameter
How can I assign a bean message, for example: <bean:message key="leftmenu.dailyreport"/>
to a JSP parameter? I tried:
<jsp:include page="/pages/common/common006-tabmenu.jsp" flush="true">
...
0
votes
1answer
31 views
Passing an object in URI jquery and accessing it in php
I have a quick question here. I would like to pass an object through the uri.
So here is a set of data I am using already something like this:
a = 'a';
b = 'b';
obj = {
d : 'd',
c : 'c'
}
//so ...
0
votes
1answer
114 views
Tire pass param to model and use this param in search
Im trying to exclude current_user.id from my Tire search results but cannot figure how to pass a param to Tire and use that instead of a fixed value for search.
How could one pass the current_user.id ...
1
vote
1answer
53 views
access the nested attributes
This is my params hash. I just want to get each name and email_id and want to process further on those. Pls tell me how can I get this. Help me out since I am new to rails.
{
"utf8"=>"✓",
...
3
votes
4answers
233 views
Struts2 : Passing array of String as static param
I wanted to declare an action in such a way that i could pass String array of static parameter, I tried the below code
<action name="saveRecord" class="saveRecordAction">
<result ...
0
votes
1answer
85 views
perl cgi::param error with single plus sign in Taint mode
I work on a website based on Perl CGI. It's run with Perl -T (Taint mode). I noticed that a text input contains just a plus sign and nothing else ("+") causes CGI::param() to give this error:
...
2
votes
1answer
107 views
perl hash not reading from param ()
I cannot get perl to read a hash key that was passed to it from param().
this does not work.
append_file('pending_entries.txt',$spanish_url{param('venue')});
nor this,
my $var = ...
1
vote
1answer
161 views
passing string in XSLT to XML template
I have a XSLT. which calls a function that returns a string. Like this:
<xsl:param name="mystr" select="myStrfunc()"></xsl:param>
it also calls a XML template like so:
<li>
...
0
votes
4answers
202 views
jQuery Pass url parameter to a seperate functions parameter?
PHP dev needing JS help! I'm pretty new to JS and can't figure this out.
I have a small jQuery plugin gSearch http://gsearch.scottreeddesign.com/index.html That performs a Google Search within your ...
0
votes
1answer
151 views
zend send email to refer a friend
I have a page to send invite email to friend.
When you enter your friend email and it's send.
Your friend receive the email and in that email he has a link that goes to a page to refer the user.
...
1
vote
2answers
129 views
Use of <xsl:param> and <xsl:variable> causes error on the server
I'm trying to modify and existing project in order to add some features. I would like to pass some parameters to my xsl stylesheet, but any use of parameters causes an error. I've tried inserting the ...
0
votes
1answer
221 views
Rails - Redirect URL with params (routes)
I'm trying to create a redirect for anyone that has parameters in a certain url, to the homepage. I currently have this in my routes:
match "/pr?campaign=#{'params[:campaign]'}" => redirect("/")
...
6
votes
1answer
66 views
What's the point of using explicit data types in PDO::bindValue()?
What's the point of using explicit data types in PDO::bindValue()?
For example in either of the following forms there would be an SQLSTATE[HY000]: General error: 1366 Incorrect integer value: 'a'
...
1
vote
3answers
560 views
jsp:param with Java class
I have a JSP file that includes another JSP file. The first JSP should pass an instance of a Java class (widget) to the second JSP file.
This is what I have:
The first JSP:
<jsp:include ...
1
vote
1answer
496 views
PHPDoc optional parameter
There are already 2 similar questions of this type here on SO but none of the answers seem to work.
PHPDoc doesn't seem to recognize optional parameters in my functions as optional, for example:
/**
...
1
vote
1answer
93 views
COM Interface as a param of WinRT ref class, how it possible?
How I can define this class correctly:
public ref class WICBMP sealed
{
void Load(IWICBitmapSource ^wicBitmapSource);
};
0
votes
0answers
41 views
how to bind param changes by the search query?
I have this form:
<form name="search" method="post" action="">
<table border="0" cellpadding="2" cellspacing="2">
<tr>
<td><?=$txt_fname?>: </td>
...
0
votes
1answer
121 views
Get first row from rails param
I've got an object/param that I'm saving into my database. But while I do that I'd like to get the first row in that object to do some Javascript things with. So what I'm receiving in my view from the ...
0
votes
1answer
683 views
Primefaces file upload auto=“true”: preserve images preview
Have Primefaces file-upload component with auto="true" param:
...
<p:fileUpload fileUploadListener="#{uploadFileBean.upload}" mode="advanced" auto="true"/>
...
When auto="true",that after ...
0
votes
1answer
66 views
Lift Framework - problems with passing url param to Snippet class
I am trying to do a simple case of /author/ and get the Lift to build a Person object based on the id passed in.
Currently i have an Author snippet
class Author(item: Person) {
def ...
0
votes
2answers
3k views
How to pass values from HTML page to java applet?
I have tried passing values using javascript like below
<script language= "javascript" type= "text/javascript">
var num;
function getVal()
{
num=document.getElementById('in').value;
...
0
votes
3answers
177 views
How to marshalling a function with (char* param[]) in C#
I have a function in a native dll whose function looks like this
int GetActiveNames(char* names[]);
How do I create my PInvoke wrapper method in C# to the above function which returns me an array ...
6
votes
2answers
3k views
How to provide param attributes for a script in Powershell?
I have this script that can be called in two ways:
MyScript -foo path\to\folder
or
MyScript bar path\to\folder
(That is, I can either pass a switch plus a folder or a string argument plus a ...


