How To Visualize Values Of The Selected Row

Nov 30, 2014

I'm currently writing a small program, where I need to save data into a Defaulttablemodel in a jTable.I have to save the name, a number and the email-adress.I added a button which opens a new JFrame and there I need to change the email and/or the name.My current solution is far from good: No matter which row I select, i can only update the "newest" row (last created). How can I visualize the values of the selected row (out.println// or whatever) so I can go further and overwrite these values.My Code when I click on Update:

int zeilenwahl = jTableStudenttab.getSelectedRow();
// System.out.println(jTableStudenttab.getSelectedRow());
if (zeilenwahl != -1) {
this.setVisible(false);
new Bearbeitung().setVisible(true);
} else {
JOptionPane.showMessageDialog(rootPane, "Zum Bearbeiten Zeile auswählen");
}

Here is where the mistake is (probably)

public Bearbeitung() {

initComponents();
jTextFieldvorname.setText(Student.vorname);
jTextFieldnachname.setText(Student.nachname);
matrikelstring = matrikelstring.valueOf(Student.matrikelnummer);
jLabelmatrikelwert.setText(matrikelstring);
jTextFieldemail.setText(Student.email);

}

View Replies


ADVERTISEMENT

JSF :: Display Values Of Selected Checkboxes On Page After Submitting Form

Feb 13, 2014

I have the following simple "selectManyCheckbox" specified in my jsf page:-

<h:selectManyCheckbox id="animalsmc" layout="pageDirection" value="#{animalSelectionBean.selectedAnimals}">
<f:selectItem itemValue="1" itemLabel="Lion"/>
<f:selectItem itemValue="2" itemLabel="Tiger"/>
<f:selectItem itemValue="3" itemLabel="Elephant"/>
<f:selectItem itemValue="4" itemLabel="Eagle"/>
<f:selectItem itemValue="5" itemLabel="kangaroo"/>
</h:selectManyCheckbox>

I have the following specified in my bean class:-

private int [] selectedAnimals;
...
public int[] getSelectedAnimals() {
return selectedAnimals;
}
public void setSelectedAnimals(int[] selectedAnimals) {
this.selectedAnimals = selectedAnimals;
}

I would like to know how to display the values of selected checkboxes on the JSF page after submitting the form? I tried outputtext, however it displays the object and not the values. I cannot even frame the outputformat for the same.

View Replies View Related

Swing/AWT/SWT :: Making A Tetris Clone - How To Get Cube To Visualize In JPanel

Nov 10, 2014

My question is, how do I get my Cube to visualize in the JPanel? I've tried a bunch of add methods but they don't compile. Is there a proper method I can use to add an object to a JPanel?

import javax.swing.*;
import java.awt.Dimension;
import javax.swing.Timer;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.*;

[Code] ....

View Replies View Related

Why Value Of Selected Row Stays The Same In Textfield

May 18, 2014

try {
System.out.println("1");
int row = jTable4.getSelectedRow();
System.out.println("row");
String str = (jTable4.getModel().getValueAt(row, 0).toString());

[Code] .....

I select the first row the value is 0

I select the second the value is still 0

View Replies View Related

JSP :: Selected Drop Down Menu?

Nov 8, 2014

I am making an edit page and I want to populate my drop down menu with things that were already selected. For example, if i want i click to edit my favorite food it will be populated with the one the user previously selected. How do i go about doing this? [URL] ....

View Replies View Related

Swing/AWT/SWT :: GetSelectedItem Isn't Getting Selected Item

Oct 9, 2014

I was wanting to select an item in a comboBox and display it in a text field but all it's doing at the minute is retrieving the first item in the comboBox and placing that in the txt field

String value = (String) comboBoxEnv.getSelectedItem().toString();
if(comboBoxEnv.getSelectedItem()!= null){
txtTo.setText(value);

View Replies View Related

Copy Selected Value From JComboBox To JTextField

Apr 16, 2014

If I have a ComboBox and I want to copy the selected value to textfield. How can I do it?

View Replies View Related

How To Get Sum Of All Numbers In A Row Of 2D Array With Row Being Selected By User

Mar 9, 2015

I just learned about 2D arrays and am still trying to get a grasp on the concepts. I'm a little confused by how you return all the values in a row to add up and display the sum if the row is entered by the user.

import java.util.*;
public class RowSum {
public static void main(String[] args) {
Scanner s = new Scanner (System.in);
int userpick = 0;
int sum = 0;

[Code] .....

View Replies View Related

Compare Selected Items From Two Arrays

Nov 16, 2014

I need to somehow compare the random color chosen from the color array and the random name selected from the name array. I know how to compare to entire arrays of the same type such as integers. How to go about this with two different arrays. I thought maybe I could parse the color array selection to a string but had no luck with that either.

Problem #1: Design and implement an Applet that plays a simple game to teach a child to read. The game displays a picture on the left hand side of the Applet and a word on the right hand side. Below the pictures are two buttons for the child to click--one if the word matches the picture, the second of the word doesn't match the picture. Display an error message if the child is incorrect (or play a sound). Display (or play a sound) display words of encouragement if the child chooses correctly. Add a loop so the child can keep playing.

import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
import java.util.ArrayList;
import java.util.Random;

[Code] ....

View Replies View Related

JTextBox To Popout When JCheckBox Is Selected

May 13, 2014

import java.awt.*;
import java.util.*;
import java.awt.FlowLayout;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.JCheckBox;
import javax.swing.JPasswordField;

[Code] .....

How can I make the JTextField to popout when a JCheckBox is selected? I tried putting it under the general if statement and under the if statement which is inside the general if statement.

View Replies View Related

JTable Specific Cell Selected

Jun 6, 2014

I want perform some calculations whenever a specific cell block is focused in JTable, I've tried using focusListener on JTable but looks like my table isn't triggering the event. I don't know why, what to do?

View Replies View Related

How To Set First Cell As Selected When Window Is Opened

Feb 4, 2015

I'm working on a spreadsheet like app using JTable and was wondering if I can make the first cell of the table be selected when the window opens. Is there a way to do so?

View Replies View Related

JSF :: SelectOneMenu Control Not Returning Selected Value

Aug 18, 2014

I am having a problem with the SelectOneMenu control. I want the the selected item to be be displayed via the valueChange Ajax event listen. But this is not happening.

However, when I change the value in the SelectOneMenu and then click on the Submit button, then selected value is getting displayed via the 'save' bean function

The relevant xhtml code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<style type="text/css">

[Code] .....

View Replies View Related

JSP :: Store Selected Value From Dropdown List To Database?

Apr 6, 2014

I want to store the selected value from drop down list to mysql database...what should I do?

I have written the following code

<%@ page import="java.sql.*" %>
<%ResultSet resultset =null;%>
<HTML>
<HEAD>
<TITLE>Assessment Questionnaire</TITLE>
</HEAD>
<%
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/city?user=root&password=");

[code]....

what should i do to store the value selected from dropdown list...I have multiple dropdown list on a single page..

View Replies View Related

JSP :: How To Add New Checkbox Activate Selected Items On Page

Jul 16, 2014

I am working on a web application for store file maintenance. Need to add a new Check Box "Activate Selected Menu items" on the page.

what code i should write to add a Check Box.

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

Adding Selected Toppings To Array In Another Class?

Dec 2, 2014

I need to add from what is selected in some check boxes to an array that is in another class, but I can't get the other class to be called correctly.

I need to get the toppings that are selected from the check boxes added into the array that is in the calculations method.

Calculations method

Java Code:

import java.util.ArrayList;
import java.awt.event.*;
import javax.swing.*;
import java.awt.*;
import javax.swing.JMenu;
import javax.swing.JMenuBar;

[Code] .....

View Replies View Related

JavaFX 2.0 :: Binding ListView Selected Items

Oct 19, 2014

I want to synchronize a List<String> with the selected items of a ListView. In the real project, I want to synchronize the selected items of a TreeView and the selected images of a galery (custom control).
 
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.collections.FXCollections;

[Code] ....
 
In most cases, the program works as expected but sometimes there are some issues.
 
- For example, when I launch the application and select all the items with Ctrl-A, the event { [One, Two, Three] added at 0,  } is fired so the list of strings contains incorrectly 4 elements [One, Two, Three, One].
 
- Another example, when selecting all the items (with Shift+End), two events are fired { [One] removed at 0,  } and { [One, Two, Three] added at 0,  }, that's correct. But when I remove the last element with Shift-Up, 3 events are fired  { [Two] removed at 1,  },  { [Three] removed at 2,  } and { [Two] added at 1,  } and an exception is thrown:

java.lang.IndexOutOfBoundsException: toIndex = 3
    at java.util.ArrayList.subListRangeCheck(ArrayList.java:1004)
    at java.util.ArrayList.subList(ArrayList.java:996)
    at com.sun.javafx.binding.ContentBinding$ListContentBinding.onChanged(ContentBinding.java:111)

View Replies View Related

JavaFX 2.0 :: Filtering ListView By Selected Date

Apr 20, 2015

I'm trying to add filtering content in ListView by selected date from DatePicker. Every position(movie) has it's emission date saved, so when you choose date that you're interested in, it will show just matching titles. I was trying to use this solution:

@FXML
  private void initialize() {
  titleList.setCellFactory((list) -> {
  return new ListCell<Movie>() {
  @Override
  protected void updateItem(Movie item, boolean empty) {
  super.updateItem(item, empty);

[Code] ....
 
But when I add new position and change date, that I'm filtering by, every title disapear and don't reload. How can I make this work with every change?

View Replies View Related

Store Pixels Values Currently On Screen And Compare Them To Values On The First Frame?

Aug 29, 2014

I need a way to store the pixels values currently on the screen and compare them to the values on the first frame. Right now I'm using glreadpixels as follows:

currentBuffer= BufferTools.reserveByteData(mapSize);
glReadPixels(mapStartX, mapStartY, mapWidth, mapHeight, GL_BLUE, GL_UNSIGNED_BYTE, currentBuffer);
for (int i = 0; i < mapSize; i++) {
if (currentBuffer.get(i) != baseBuffer.get(i)) {
//Do nothing
continue;
}
//Do something
}

This works perfectly fine but turns out to be a real bottleneck, dropping the fps to a third of what it was. Is there any quicker way? All I'm after is speed, I don't even need to show it on the screen if the comparison is made "behind the scene".

View Replies View Related

JSF :: Passing Selected Hyperlink Value As Where Clause Argument In Query

Dec 28, 2013

I have a mySql table of PROJECTS, which I am displaying as a list in the index.xhtml. The projectid column contains hyperlinks. When they're clicked I would like the specific projectid row selected to be passed as the query argument into another jsf file (ListProjects.xhtml) which displays all the project values referring to the projectid selected in the index.xhtml. The named query is:

@NamedQuery(name = "Projects.findByProjectid", query = "SELECT p FROM Projects p WHERE p.projectid = :projectid")
index.xhtml
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"

[Code] ....

I get the following stack trace. How to correctly pass the hyperlink parameters.

org.jboss.weld.exceptions.WeldException: WELD-000049 Unable to invoke public void com.manaar.beans.SelProjectMgtBean.init() on com.manaar.beans.SelProjectMgtBean@681859ae
at org.jboss.weld.injection.producer.DefaultLifecycleCallbackInvoker.invokeMethods(DefaultLifecycleCallbackInvoker.java:91)

[Code] ....

View Replies View Related

Swing/AWT/SWT :: Matching Strings To Selected Rows In JTable

Nov 10, 2014

I have a JTable which shows pdf files. In Addition I can check if they have errors, if it so I can generate a "report" by clicking the pdf. But the report gives me errors from all of the pdfs in the table. How can I match the error messages to the pdf which I select?

Here is one of the checking methods:

public static void testAllPagesHaveSameRotation(PDFDocument pdf) throws PDFDocumentException {
if (SettingsGui.testAllPagesHaveSameRotation.isSelected()) {
if (pdf.getPages() == 0) {
rotationError = "";
} else {
rotationError = "";

[Code] ....

View Replies View Related

JSF :: Storing User Session Attributes Through Selected Item?

Mar 18, 2014

I have to use the company's login resource, which returns a login page for authentication after a browser/user page request; after successfully authenticated, the session attributes are set in a (remote) valued object (VO) invoked via servlet; then, such values are set in my (local) POJO.

I want to display the current user session attribute (see xChave below) and save it in database. How can I persist http User session attributes through the structure below?

Abstract Controller (just the main code):

public abstract class AbstractController<T> {
@Inject
private AbstractFacade<T> ejbFacade;
private Class<T> itemClass;
private T selected;
private Collection<T> items;
//GETTERS AND SETTERS OMMITED
public AbstractController(Class<T> itemClass) {
this.itemClass = itemClass;
}

[code]...

View Replies View Related

Tool Tip Display From Database For Selected Word When Mouseover

Dec 2, 2014

I am doing project on glossary in java. Basically what i need to do is, i have a case study in the text field, when i mouse over the certain text that i already store in database. The text will be highlighted and automatically display the tool tip and content the data that i stored in my database.

View Replies View Related

JUnit - Test Class Not Found In Selected Project

Jul 21, 2010

I'm trying to write JUnit test but I'm having trouble with the following errors:

"Test class not found in selected project" -> when running AClassTest.java

"Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class" -> when running AClass.java

I have class AClass.java

and class AClassTest.java

They both are in the same package and there is JUnit library

Here's the code:

AClass.java:

Java Code:

public class AClass {
working code is in the last post
} mh_sh_highlight_all('java');
AClassTest.java:

Java Code: public class AClassTest extends TestCase {

working code is in the last post

} mh_sh_highlight_all('java');

View Replies View Related

Java App - Capture Selected Area Of Screen And Save It

Oct 22, 2014

I want to do an app that capture a selected area of a screen and save it. I did a few research and i did the code down below.

My questions are:

1 - How can i open a pdf file in this app ? (i tried use a method but it didnt work. I dont know exactly where to put it on the code)

2 - How can i save the selected area in a new file ? (a image file : JPEG, JPG,png)

3 - [the complex part] right now, the code only "save" one selected area each time. I want to capture a lot of parts of screen and save this in the same image file. one beside the other. How can i do this ?

Java Code: package javaapplication39;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.swing.*;

public class ScreenCaptureRectangle {
Rectangle captureRect;
ScreenCaptureRectangle(final BufferedImage screen) {

[Code] .....

View Replies View Related







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