p dialog fails to call the backing bean method the 1st time

UI Components for JSF
Post Reply
devkumar
Posts: 2
Joined: 30 Nov 2010, 12:23

13 Dec 2010, 18:03

I have a dialog box thats invoked to modify a couple of fields, but when I submit the form in the dialog, it fails to invoke the method the first time. If I bring up the dialog again and click submit, it works.
Any pointers in the right direction will be much appreciated. Thanks in advance.


Code snippets as follows :
Invoking the dialog

Code: Select all

<p:commandButton value="Modify Testcase" 
					onclick="testcasedialog.show()">
				</p:commandButton>
The dialog

Code: Select all

<p:dialog header="Modify TestCase" id="tcdialogid"
				widgetVar="testcasedialog" hideEffect="explode"
				showEffect="slide" closable="true" width="500" 
				visible="#{not empty facesContext.maximumSeverity}">
				<p:outputPanel>
				<ui:insert name="right-pane-content">
					<ui:include src="edittestcase.xhtml">
						<ui:param name="action" value="modify" />
						<ui:param name="testcaseid" value="#{TestCase.testCaseId}" />
					</ui:include>
				</ui:insert>
				</p:outputPanel>
				
			</p:dialog>
Submit in the dialog

Code: Select all

<p:commandButton id="modifyTestCase" value="#{msg['createTestCase.modifyTestCase.commandButton.value']}"
action="#{TestCase.modify}" oncomplete="testcasedialog.hide()">			
				</p:commandButton>
Using : PrimeFaces-2.2.RC2, Mojarra 2.0.3, Tomcat 6.0.14

Post Reply

Return to “PrimeFaces”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 13 guests