JSF :: Dialog Inside Datatable With Button Displays Wrong Variable Value

Nov 27, 2014

I have a bookings table where customers can view their bookings and in the table there is a button with a command button that onclick goes to the dialogue to display the variable petUpdate value but if you have 2 bookings then all the update buttons display the value of the last petUpdate in the arrayList.

DataTable with the button

<p:dataTable
id="bookingTable"
var="customerBooking"
value="#{booking.sessionBookingList}"
editable="true"
style="margin:0px 0px 20px 100px;font-size:15px;width:600px;"
>

Code in the above datatable.......The commented out output label displays the correct value for each but when the button is clicked the dialog only displays the last ones value

<p:column headerText="Check Updates" style ="width:50px;">
<!-- <h:outputLabel value="#{customerBooking.petUpdate}"></h:outputLabel> -->
<p:dialog header="#{customerBooking.petName}'s Status" widgetVar="dlg1" minHeight="60" minWidth="60" maxWidth="60">
<h:outputText value="#{customerBooking.getPetUpdate()}" />
</p:dialog>
<p:commandButton value="?" onclick="PF('dlg1').show();" style ="width:40px;">
</p:commandButton>
</p:column>

View Replies


ADVERTISEMENT

JSF :: Dialog Box Data Show In Primefaces Datatable When Click On CommandButton

Aug 5, 2014

When i click on 'Add Invoice' button open a dialog box. input data in dialog box. After click on 'Save Invoice' all the data of dialog box is render in primfaces datatable. After that click on 'Save Invoices' all data of primefaces datatable and HTML table data are store in ipsDetail and Invoice object of Managed Bean class.

XHTML file :

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:ui="http://java.sun.com/jsf/facelets">

[Code] .....

Here, Problem is ipsDetail elements NULL when click on 'Save Invoice' button in addRow() so that primefaces datatable not updated. So that i can not insert new invoice data in database table.

View Replies View Related

JSF :: Datatable Not Editable Inside Of A Form

Oct 11, 2014

When I have a datatable of primefaces with paginator and its only readable and not editable, its not needed to be inside of a form, right? although I have seen it many times inside of it

View Replies View Related

Keep Getting Wrong Variable Values?

Oct 24, 2014

Whenever I run this I get:

There are not enough funds to do that

Balance: $0.0
Monthly Interest Rate: 0.375%
Account Start Date: Fri Oct 24 08:03:40 EDT 2014

I assumed that this is because the constructor Account(); is setting the variables to 0 every time the program runs even though I'm passing other variables through to methods and constructors. I've looked up similar programs and this is how it's done though. The steps to my homework say to create a no-arg constructor Account() that creates a default(0) account Id and balance. What did I do wrong?

import java.util.Date;
public class Account {
 private int Id;
private double balance;
private double annualInterestRate;
private Date dateCreated = new Date();
 public static void main (String [] args){
//Objects of Account to get non-static methods

[code]....

View Replies View Related

Java-8 :: Button Width Calculated Wrong Under Windows?

May 7, 2014

I am developing a JavaFX application under Java 8 on my Ubuntu 14.04 (32 bit) system. When I run it on the Ubuntu box, all is fine, but when I run it under Windows 7 Home Premium (64 bit) with the same Java8 release installed, all my buttons have their text ellipsised (sp?). Why the behavior is different? Or is this a bug in JavaFX? Here are the particulars:
 
fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?><?import java.util.*?><?import javafx.geometry.*?><?import javafx.scene.*?><?import javafx.scene.control.*?><?import javafx.scene.layout.*?><?import javafx.scene.text.*?>
<AnchorPane id="AnchorPane" prefHeight="91.0" prefWidth="-1.0" xmlns:fx="http://javafx.com/fxml"> 

[Code] ....

Java:
java version "1.8.0_05"Java(TM) SE Runtime Environment (build 1.8.0_05-b13)
Java HotSpot(TM) Server VM (build 25.5-b02, mixed mode)

View Replies View Related

Swing/AWT/SWT :: Fitting Dynamic JTable Inside A Dialog Or Frame?

Apr 22, 2014

I want to calculate the height of a dialog that contain only a table depending on how many rows that table it has so I'm using the cross multiplication rule.For example i check initially that my table is well fitting into the dialog(Without space at the bottom) for some value and after that i use the cross multiplication rule because data are dynamic.But unfortunately this rule does not solve the problem.What's the best rule for fitting a dynamic table inside a dialog or a frame? Here is my code.

public class FlowLayoutChangingGap {
public static void main(String[] args) {
// just for testing perpose but data are getting from database and it's dynamic
Object[][] data = {
{ "Kathy", "Smith", "Snowboarding", new Integer(5) },
{ "John", "Doe", "Rowing", new Integer(3) },

[Code] ....

View Replies View Related

Correct Way To Set A Default Button In A Dialog?

Dec 9, 2014

I found different ways to code this for a button named "closeButton":

- closeButton.getRootPane().setDefaultButton(closeButton);

- thisDialog.getRootPane().setDefaultButton(closeButton);

- SwingUtilities.getRootPane(closeButton).setDefaultButton(closeButton);

Which is best?

View Replies View Related

Open Dialog Implementation For Menubar Button

Feb 27, 2014

I am learning java and I have Assignment on how to implement a open dialog for menubar button ... how i can step in ...

View Replies View Related

JavaFX 2.0 :: Create Button Bar The Same As Confirmation Dialog

May 1, 2015

I want to create a button bar that is the same as the confirmation dialog button bar -- so an OK and cancel button layed out in the platform specific way, and with the same styling.
 
I have made some progress via a hack -- create an alert dialog, and extract the buttons in the dialog using lookupButton, and then put those buttons in a toolbar. But this doesn't necessarily get a toolbar with the buttons in the correct order. If I could get the button bar out of an alert dialog I would have a solution, but I can't see to do that.

View Replies View Related

Swing/AWT/SWT :: How To Change Button Text And Actions In Input Dialog Box

Oct 20, 2014

I'd like to change the text on the two buttons which I have in my Dialog Box, how should I do this?

Also, when I click the X Button in the top right of the Dialog Box, nothing happens, and the program only stops when I end it in jGrasp. How do I make this button close the program when clicked on?

import javax.swing.*;
import java.util.Random;
public class SwingInputExample {
public static void main(String args[]) {

[Code] .....

View Replies View Related

Creating A Dialog That Add TextField Dynamically Based On A Radio Button

Dec 12, 2014

What would be the simplest way of creating a Dialog that can add TextField dynamically based on whether a radio button option from the dialog box is selected. I thought of JOptionPane.showMessageDialog and adding a JComponent though I would not be able to add a TextField on the fly and I would not be able to add ActionListeners. The dialog would initially contain some radio buttons, labels and textfields.

View Replies View Related

Swing/AWT/SWT :: How To Tie Member Variable Inside And Outside Of ChangeListener

Mar 9, 2014

I have a Tcr object as a member variable of the JFrame. But When ChangeListener swings into action, the variable inside it are all nulls. the TcrPanel is created before the ChangeListener is triggered.

Tcr tcrPanel;
tabbedPane.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent e) {
if (e.getSource() instanceof JTabbedPane) {
CloseButtonTabbedPane pane = (CloseButtonTabbedPane) e.getSource();

[Code] ....

View Replies View Related

Swing/AWT/SWT :: Non-final Variable Inside Inner Class Defined In Different Method

Aug 9, 2014

this code won't compile because selected row must be declared as final because of it being defined outside the window listener. Is their anyway around this? If I make it final the first time that the variable is called it keeps it starting value until the GUI is closed.

butEdit.addActionListener (new ActionListener () {
@Override
public void actionPerformed (java.awt.event.ActionEvent evt) {
int selectedRow = table.getSelectedRow ();
final String [] values = custTableModel.getRowValues (selectedRow);

[code]....

View Replies View Related

Cannot Refer To Non-final Variable Inside Inner Class Defined In Different Method

Apr 3, 2014

Created a java.sql.connection object. Refering those obj inside public void run() { } If i declare as final inside a method, i can't refer those outside method due to scope. Cannot refer to a non-final variable dbConnObj inside an inner class defined in a different method...

View Replies View Related

Variable NumClicks Adds All Of The Button Clicks Together?

Oct 12, 2014

import javax.swing.*; //import javax swing package
import java.awt.*; //import java awt package
import java.awt.event.*; //import java awt event package
public class JPizzaSize extends JFrame implements ActionListener //class name
{
final int SMALL = 7;
final int MEDIUM = 9;

[code]....

My variable numClicks counts all of the clicks on every button instead of each individual button and adds the cumulative total to the JTextField. What have I missed? If I click button1 twice, $14 appears in the text field, then if I click button2, $27 appears in the text field instead of $23. I though that numClicks would stop counting at the end of the curly bracket for that block of code?

View Replies View Related

While Loop Inside A For Loop To Determine Proper Length Of Variable

Feb 25, 2014

Here's the code: it's while loop inside a for loop to determine the proper length of a variable:

for (int i = 0; i < num; i++) {
horse[i]=new thoroughbred();
boolean propernamelength = false;
while (propernamelength==false){
String name = entry.getUserInput("Enter the name of horse "

[code]....

I was just wondering what was going on here -- I've initialized the variable, so why do I get this message? (actually the carat was under the variable name inside the parentheses.

View Replies View Related

JSF :: XML Schema Into Datatable

Apr 21, 2014

I have an xml schema.. I need to display it as JSF datatable.This is my xml schema

XML FILE
<?xml version="1.0" encoding="UTF-8"?>
<shiporder orderid="889923" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="Shiporder.xsd">
<orderperson>John Smith</orderperson>
<shipto>
<name>Ola Nordmann</name>
<address>Langgt 23</address>

[code]....

View Replies View Related

JSF :: Move Datatable Rows Up And Down?

May 22, 2014

I have a requirement like in a Rich datatable, and i have placed two links up and down in one of the column of each row, here i wanted to swap rows (move up/ down ) the rows when i click the link on a perticular row. is it possible with jsf/ java script?

View Replies View Related

JSF :: Nested Table Without Using Datatable

Apr 11, 2014

Need to create a nested table without using datatable. I am using jsp and jsf but using datatable is not allowed.

View Replies View Related

JSF :: Edit / Update Row Of Datatable

Jan 23, 2014

I am implementing code of edit/update row of datatable in jsf.

package org.demo;
import java.util.ArrayList;
import java.util.Arrays;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
@ManagedBean(name="order")
@SessionScoped

[Code] .....

View Replies View Related

JSF :: Display Just A Datatable Is Faces Request?

Jun 5, 2014

1. If we have and xhtml page and we just have a datatable to show some records through a managed bean, I think there is no validation phase, apply request values phase... so it would be a faces request but not with the lifecycle of a jsf request, right?

2. In the previous case because the normal phases of a jsf request are not going to be called, the method that will be called in the backing bean to get the records, could be called more than once although its not a normal faces request?

View Replies View Related

JSF :: Populating A Datatable From Onetomany Collection

Apr 9, 2015

I am having a hard time trying to wrap my head around trying to get a couple of columns in a datatable populated with values from a @OneToMany collection. The concept is simple but my brain refuses to grasp it!! I will try to make this brief...

I have several forms built with primefaces 3.5 using NetBeans 8 IDE on a JBoss EAP 6.21 server, and JPA 2.1 annotations. Data is extracted from an Oracle 11 database, which consists of several lookup tables, as well as a primary table and secondary table. Using the EntityManager createQuery method I query the database, which of course returns a resultset. The query grabs all records from the primary, as well as values from 2 specific columns of the secondary database, based on search criteria entered by the user on a primefaces search form. The returned results are then iterated through, this is where I am trying to get the values from the secondary table to populate specific fields in the datatable.Here is the applicable code from the list.xhtml form containing the datatable:

<p:dataTable id="datalist" value="#{foreignPartyController.returnedSearchResults}" var="item"
selectionMode="single" selection="#{foreignPartyController.selected}"
paginator="true"
rowKey="#{item.foreignPartyId}"
rows="30"
rowsPerPageTemplate="10,20,30,40,50"
sortOrder="ascending"
resizableColumns="true"
style="overflow: auto"

[code]....

As odd as the code may look (and I will completely understand anyone cringing as to some of the coding methods I use), specifically with the ui:repeat tags nested inside the datatable tag of the list.xhtml form, I strangely do see the values from the secondary table showing up in the form showing the results in a datatable. However, when the user clicks on a specific record in the returned resultset listed in the datatable, another form is opened and populated with the values from the datatable, but the 2 fields on that form that should be populated with the 2 values I referred to before from the secondary table (i.e. policy1Num and totalPayoutAmt) do not have the values in them.

This is partly because I have those 2 fields in the editable form pointing to the managed bean of the secondary table (code from that bean not shown here), rather than the same "polNum. policy1 Num" and "totPayout.totalPayoutAmt" var I am using in the list.xhtml form. How those values are being successfully returned into the datatable of the list.xhtml form - I happened to "stumble" across the use of the "polNum" and "totPayout" vars with the "policy Payment Collection" list. I do not know how to do the same thing for those 2 fields in the editable form.how a datatable gets populated, specifically with values in a @OneToMany collection,

View Replies View Related

JSF :: Selected Checkboxes Does Not Change To Unselected In Datatable

Jul 8, 2014

I used Primefaces 4.0.7.I has trouble with checkboxes, which are not change,with unselected checkboxes when I press . I mean, i selected someone from selectone menu in my bsPanel(first panel) and then the datatable fills with his/her duty.Then I select all the duties in the datatable to assign to someone else in bilgiPanel. Then duties assign this person and then i choose same person in the top panel(bsPanel),then datable seems with selected sutiesHere xhtml file;

<p:panel id="bsPanel" header="#{etiketler.personel}" collapsed="false" toggleable="true" >
<h:panelGrid id="grid" columns="2" columnClasses="colclass1,colclass2" rowClasses="rowclass1, rowclass2">
<h:outputText value="#{etiketler.personel}: " />
<p:selectOneMenu id="personel" value="#{bsView.kullanici}"
effect="fade" converter="#{entityConverter}">
<f:selectItems value="#{bsView.kullanicilar}" var="s"
itemLabel="#{s.adiSoyadi}" itemValue="#{s}"
/>

[code]....

View Replies View Related

JSF :: Enable / Disable Columns In DataTable PrimeFaces

Jul 21, 2014

I have created one dataTable in page and shown some columns but I want to show only those columns which have entries ( if any column doesn't have record then it should not be displayed on the page.) . How should I put validation on this and display table.

View Replies View Related

JSF :: How To Update Datatable After Registering User In Database

Apr 11, 2014

I have requirement, in that I am showing a Datatable, above that table i have form in that i can register a employee, after clicking on submit employee data have to be saved in the database aswell as i have to update datable, so that I can see that registered employee in that Datatable, how can i full fill this requirement. I am using jsf 2.0, ejb3.0,jpa 2.0.

@Override
public List<Employees> getallEmployees() {
System.out.println("all employee fetched");
return (List<Employees>) em.createNamedQuery("Employees.findAll").getResultList();
}

In managed bean I am calling this service as fallow in init method, and i am binding same this. employee list to UI

public String getAllEmployeesfronHr() {
this.employees = customerservice.getallEmployees();
System.out.println(this.employees.size() + "=================size of employee");
return "";
}

For every submit button click i have to query database or is there any mechanism to update List / can we use entity manager in anyway so that we can update Employee List....

View Replies View Related

Code Only Displays Four Zeros

Jun 20, 2014

why this code only displays four zeros ?????

public class VargjetUshtrimi2 {
public static void main (String a []) {
int r[] = new int[11];
for (int i = 1 ;i < 10; i++)
{System.out.println( r[i] );}
}

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved