Tagged Questions
The commandlink tag has no wiki summary.
3
votes
2answers
207 views
CommandLink in WPF
Can someone tell me how can I add a CommandLink control in a WPF window?
This is what I mean by CommandLink : http://msdn.microsoft.com/en-us/library/aa511455.aspx
3
votes
2answers
379 views
How to write right jsf commandlink?
why when I write:
<h:commandLink action="student" value="students"></h:commandLink>
and this in faces-config.xml:
<navigation-rule>
...
3
votes
3answers
4k views
JSF commandLink, POSTing and the back button
I've recently started doing some JSF work - before that I've always used PHP or Python for web development.
I was somewhat surprised to find that JSF uses HTTP POSTs to navigate when the ...
2
votes
1answer
259 views
h:commandLink not working when inside a list
I have a problem with RichFaces and creating lists of links. If you attempt to use any type of commandLink inside a list (I've tried ui:repeat and rich:list) the action on that link is not called. ...
1
vote
3answers
44 views
Batch: start application doesn't show a GUI
I try to launch a self written autoit application called "KeyShortcuts.exe" using a batch called "launchMacros.bat". This applications provides keyboard shortcuts for various things and includes a GUI ...
1
vote
1answer
38 views
I can't map my Servlet with my JSP
I have a problem for mapping my servlet with my Java Server Page, using the JSF framework and especially the commandLink tag.
When I click on the commandLink it only reload the same productList.jsp.
...
1
vote
1answer
45 views
Centering the text in an imaged commandLink
i have a p:commandLink with
.button{
background-image: url(http://www.lefinnois.net/aqua/aqua1.jpg);
display:inline-block;
width:150;
height:50;
}
<p:commandLink update="media" ...
1
vote
1answer
107 views
Show/Download txt or csv file with commandLink and Tree2 tomahawk JSF
I have a tree (tree2 tomahawk 1.1.11) that shows a list of dirs and files. When I click on a file I would like to show the download dialog to let the client download the file. My page looks like
...
1
vote
0answers
166 views
JSF2 - ui:repeat, 1st commandLink doesn't work but others do
I have a ui:repeat loop to perfom some paging:
<h:panelGroup layout="block" style="height: 25px;text-align: right" id="Prod-printed-paging">
<ui:repeat value="#{upBean.pagesProdPrinted}"
...
1
vote
1answer
116 views
faces-redirect and the back button cause other links to work incorrectly
I have a question surrounding faces navigation.
So I have a page that takes a request parameter to load a specific user. This page displays a list of commandLink that, when clicked, redirect to ...
1
vote
0answers
206 views
ui:include in richfaces 4 only gets updated on second click
I am new to Richfaces4 and JSF2 and having lots of issues. Same code start to work suddenly and then it breaks. Currently I have a ui:include tag that update the page when the a4j:commandLink is ...
1
vote
2answers
204 views
h:commandLink not firing the form.submit event
When my page is loaded I execute the following JS script, which I use to display a popup saying (please wait...) when any form is submitted.
jQuery(function(){
...
1
vote
1answer
169 views
JSF 2.0, malformedXML when using ajax on a commandlink
I am trying to display a field in a form after an ajax request through a commandlink.However ,i get a malformedXML error when i click the link. The xhtml file looks like :
<h:form> ...
1
vote
1answer
1k views
Richfaces 4 a4j:commandLink action not firing in rich:popupPanel
I seem to be having a problem where I have an a4j:commandLink on a rich:popupPanel but the action is not firing. The xhtml looks as follows:
<rich:popupPanel id="rate-panel" modal="true" ...
1
vote
1answer
170 views
jsf 2.0 - Pass an outcome as string into a composite component
I'm creating a simple composite component with jsf2, and i'm stucked because of a stupid problem.
I don't know how to send to the composite an outcome as parameter, which will be used as action on a ...
1
vote
0answers
285 views
Not working h:commandLink (inside rich:dataGrid and h:panelGrid)
I have a problem with not working h:commandLink. Distinct: when I start my app - everythink is good, link is invoke at first time but when a rerender this part of page (using rerendered attribute in ...
1
vote
2answers
2k views
how to refresh referenced part of page with prime faces' p:commandLink?
Environment: Tomcat 6 ,jsf 2.0,prime faces 2.2.1 ,chrome explorer
I want to click the "ViewDetail" link in the left expanded tree and show the product's detail info. But the code below didn't work.
...
1
vote
3answers
350 views
Problems with conditionals in JSF
I have the code bellow:
<c:set var="show" value="#{cartBean.itemsAdded}" />
<c:if test="${show}">
<h:form id="test1">
<h:commandLink action="#{cartBean.foo}">this ...
1
vote
1answer
1k views
JSF: CommandLink not working with dataTable and ajax
I have a commandLink inside a dataTable. dataTable is populated by an ajax call. But my commandLink is not pointing to the correct location. Here is the code.
<h:form id="form1">
...
1
vote
0answers
1k views
H:CommandLink actionListener code fires again when a jsf component is clicked
I have a JSP page containing a h:dataTable. The datatable has a column of h:commandLink components which open a new popup window. These commandLink components have an actionListener method in the ...
1
vote
1answer
333 views
Apply bookmarkable URL to h:commandLink
As I read in docs and tried myself, JSF 2.0 applied bookmarkable urls to h:link and h:button elements.
Is it possible to make bookmarkable URL for h:commandLink element? I experience that f:param is ...
1
vote
1answer
785 views
Help to deal with the <h:commandLink>/<h:dataTable>/request scoped bean behavior?
I'm trying to deal with the well known "issue" where the action method of a h:commandLink doesn't get invoked when placed inside a dataTable that gets its data from a request scoped bean. Due to ...
1
vote
2answers
811 views
h:inputText data cached
Click "LINK1" --> modal popsup --> enter value in text-box --> click Submit/Process
Click another link "update/cancel" --> same modal popsup --> I see the value in the text box (This is fine and if ...
1
vote
0answers
392 views
a4j:commandLink working intermittently
In the code below, a4j:commandLink (with id id="account-link") does not work for me all the time.
Fail Scenario (happens 1 out of approx 10 clicks) : Its clicked, the a4j:status tag (we show a ...
1
vote
2answers
298 views
Has anyone seen this h:commandLink behavior?
I have a very simple JSF form:
<h:form id="simpleSearch">
<h:inputText id="surname" value="#{myBean.surname}" required="true" />
<h:commandLink>Search</h:commandLink>
...
0
votes
3answers
38 views
Value not retained for action parameter when inside ui:repeat
Below is my Code:
<ui:repeat var="status" value="#{showUpdatedAction.statusUpdates}">
<h:panelGroup>
#{status.content}
<h:form>
<h:commandLink ...
0
votes
1answer
38 views
@PostConstruct and commandButton/commandLink parameters case
I'm wondering if there is a common pattern for the following scenario.
Let's say I have one JSF page backed with one request scoped bean.
I want to fech all data rows from a database table when a ...
0
votes
1answer
89 views
RichFaces modalPanel load fields
I'm having a problem with my first project using RichFaces
I have a inside of a . That link has to open a modal panel and load the fields of it with the data of the row that was selected.
I have ...
0
votes
2answers
261 views
JSF: make f:facet header as commandLink
jsf:
<rich:dataTable>
...
<h:column>
<f:facet name="header">
<h:commandLink action="fileSearchSort" styleClass="theader">
Name
...
0
votes
2answers
1k views
Richfaces tooltip not working for h:outputlink tag?
I am using JSF 2.0 & Richfaces 4.0 for my project.There is one model as download file and for that purpose I used
h:outputlink to download file.The file downloads properly.But i used icon to show ...
0
votes
1answer
461 views
commanLink don't work in p:dataTable
I have a problem with a h:commandLink placed in a column in p:dataTable. The action method is not called. I'm using primefaces 2.21 and jsf 2.0.
the code like this:
...
0
votes
2answers
468 views
<f:propertyActionListener> tag not found
I cant seem to get to work. I am using icefaces and a very simple with two columns. One with actions such as remove and the other with a string (representing a regular expression). In order for ...
0
votes
1answer
406 views
JSF commandLink not working on redirected error page
I'm redirecting all exceptions to a simple error page with the following entry in my web.xml file:
<error-page>
<exception-type>java.lang.Exception</exception-type>
...
0
votes
1answer
651 views
Richfaces Model Panel Not Working in commandButton/Link With HigherVersion of browser
I m trying to call a model Panel through CommandButton in Windows Vista Mozilla Firefox:-Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.11) Gecko/20101012 Firefox/3.6.11 GTB7.1 (.NET CLR ...
0
votes
0answers
388 views
no-ip redirect to router [closed]
Why when i enter my no-ip adress antotoki.no-ip.com redirect me to my d link router
0
votes
2answers
1k views
How to use the anchor system with a <h:commandLink />?
Env : IE7 & FireFox3.5, jsf1.2, richfaces3.3.X, seam2.2.0, jboss5.1
I have a very long xhtml form, and somewhere in the middle, the user have to fill a dataTable, then click a button (i use here ...