Tagged Questions
1
vote
1answer
13 views
How to handle the click on the cell in the GXT 2.2 grid?
I'm looking for the way to handle the cell click. How to do this if I create a new column in grid in this way:
column = new ColumnConfig();
column.setId("remove");
column.setHeader("Remove");
...
0
votes
2answers
29 views
GWT best cell widget/table to populate columns?
I am creating a GWT app that will use a table to display some data. I am not sure which cell widget/table to use to populate data vertically in column. Basically I want to populate data going down ...
0
votes
0answers
10 views
Adding button to the GXT Grid cell
I use GXT 2.2.0 and I need to make a button for deleting rows. It was an idea to make checkboxes and create a button "delete", but I already have checkbox for choosing rows by users to use them ...
1
vote
2answers
31 views
How do I create a grid of ordered pairs?
My friend's trying to teach me Java and as one of his challenges, he wanted me to create a grid of ordered pairs from 1,1 to 10,10 in a 10 x 10 grid. It should look something like this:
1,1 1,2 1,3 ...
0
votes
1answer
49 views
Drawing 2D array onto a grid
I am making a board game called "Go" based of the actual board game. Basically, there are 2 players (White and Black) and they take turns placing white and black stones on the intersections of the ...
0
votes
3answers
114 views
Finding the column total in an array
I have an 1-dimensional array with random elements, got through a m*n grid. I want to find out the row total and column total, present in it.
Here is how the 1 dimensional array is:
...
0
votes
1answer
43 views
“internal compiler exception occurred” while using gxt grid
I AM USING GWT 2.5.1 AND GXT 2.2.5,
THIS IS THE BEAN I AM USING:
public class Modelo extends BaseModel {
public Modelo(String nombre,String noParte,String imagen){
this.set("nombre", ...
0
votes
2answers
40 views
Position and orientation of robot in a grid
I want to make a 10x10 grid and put the robot in position (10,1) (bottom left). I want this robot to be able to move forward, turn left/right and to pick up/put objects in a grid. When put in any ...
0
votes
3answers
63 views
Add labels to panel on button click
I have this code in Java in a button event, I add labels in a panel, the problem is that when i try to access a property like the X location of an element of my array of JLabels it gives me a ...
0
votes
1answer
31 views
Java reorganizable grid
Is there any layout or library in Java to make GUIs that contain a list of data with separate items, and the rows can be reordered by clicking the top of the column. I'm sure that was a terrible job ...
0
votes
1answer
98 views
Java - Slick - Fill Rectangle on Click
I am trying to fill a rectangle on the nearest 10th pixel with a 50x50 size. Whenever this code executes, it shows me the numbers in the syso so I know the locations are being calculated correctly. ...
0
votes
1answer
93 views
Custom object filter for a grid column in sencha GXT
Important edit: I added a depth level to the situation to better reflect my problem.
I have a GXT Grid with a ListStore of a certain type Foo. Foo happens to have some important object properties, ...
1
vote
2answers
47 views
Simple PixelGrid where I can draw big pixels (choose resolution) with the mouse?
I'm looking for a way in Java to make a simple grid which fills up pixels if u drag the mouse. So just a simple drawing surface...
Now it is important that I can choose the resolution or in other ...
0
votes
0answers
24 views
Java: Sugarscape simulation, filling the grid with sugar
In one of my classes, we are creating the Sugarscape simulation using Java. For those of you that aren't familiar with this, it basically simulates how an economy forms. In this simulation, various ...
0
votes
1answer
124 views
GXT grid auto columns width
I have a GXT Grid and want the columns in it to fit to the screen. here what my grid looks like now:
It looks so because I've set the concrete values for widths of the columns, which fits to my ...
0
votes
1answer
37 views
Using an arraylist to create a grid
I'm doing a project for a software development class (in Java) and we need to create an environment for a simulation using AI. We are doing a simple simulation of an ocean environment that contains ...
0
votes
2answers
46 views
Android game - Trying to create an array fails?
I am currently starting understanging Java. So while I've been trying to develop some minesweeper application I noticed, that when trying to add coordinates to a "Mines[]" array, the debugging window ...
0
votes
1answer
44 views
Get width / height of a GridPane column / row?
While it's obvious how to set the width/height of a column/row in a GridPane, how can I actually query these values? Thanks for any hint!
Update:
One can add an empty HBox/VBox to the corresponding ...
1
vote
1answer
70 views
Java: Make a gridbased boardgame
I need to make a boardgame where the user can select an image and use it as a board. The image part is easy, though I need help with how to make equal sized grids based upon user input. For example ...
-1
votes
2answers
65 views
Java: 'Invalid line number' when setting boolean grid to all true
I'm trying to set the below Grid to all true, but I get the error
"2685 is not a valid line number in java.util.Arrays"
public class Grid {
static boolean[][] gridCon;
boolean white = ...
0
votes
0answers
183 views
confused about UI and fragment/view structure in Google Calendar for android
I'm working on an android app for editing multi track audio, and the view structure I'm using now is terrible and buggy. I'm very fond of the look and feel of the latest Google Calendar on android, ...
0
votes
2answers
162 views
Drawing a maze using a 2d array with the same layout
I'm creating a grid-based maze game and I'm currently using a 10 x 10 2d integer array to deal with drawing the maze and simple collision detection.
My problem, is that when drawing the grid using ...
0
votes
1answer
139 views
Add Score in maze game written in java
I am going to make a maze game in java. I have done almost but i have facing problem to add score. I have add the time spend to end the game, but it doesn;t terminate. here is my code. Please help me ...
0
votes
0answers
127 views
Android java how to do CRUD operations using a datagrid like view [closed]
Is there any control to do inline CRUD operations using a view similar to the DataGridView used in dot net. All the examples I've seen just show how to display the data using TextViews. I need to edit ...
0
votes
3answers
57 views
Creating a multicolored board
I am to create a multicolored board, starting with the first square as black, then blue, red, and yellow, the squares are being filled diagonally and there are no empty colored squares. I know my ...
0
votes
1answer
374 views
Creating a draw rectangle (filled with black color) function in Java for a grid
I have created a grid in my program. Below is the code used to create the grid.
import java.awt.Graphics;
import javax.swing.JComponent;
import javax.swing.JFrame;
class Grid extends JComponent {
...
-1
votes
2answers
185 views
How to set up a simple grid based game board in java?
I'm currently learning Swing and thought making a game would make the process more interesting for me. I have my JFrame all set up with menu and tool bars, but now I'm constructing a JPanel to serve ...
0
votes
1answer
109 views
GWT Grid - Column Reordering On the Fly and Sort By Multiple Columns
Several months back, I did some searching for a GWT based grid, which would meet a couple of requirements. If memory serves me correctly, I found what I was looking for, however now that I'm searching ...
0
votes
1answer
31 views
paint a grid of icons
I'm trying to paint a grid of icons from an ArrayList onto my canvas where every after every 10 icons, the next icon will display on a new row, but cant seem to get it to work right. The beginning X ...
0
votes
0answers
70 views
How to direct a robot
I am writing a Java program that allows a user to send messages to a robot to tell it where to go on a 5x5 grid. E.g, if I send it 'FRFFLF', this means go forward, run right 90 degrees, forward twice, ...
0
votes
2answers
254 views
GXT 3: GridSelectionModel SelectionEvent/SelectionChangedEvent not firing
GXT 3 question:
Does anyone have any idea why these two handlers are not triggered when I select any row on the grid? SelectionModel is GridSelectionModel, set to single selection.
Are there any ...
2
votes
1answer
855 views
How to draw grid using swing class Java and detect mouse position when click and drag
I am trying to create a grid (5*5) size like UI using swing class. I tried nested loop and add jPanel dynamically to the JFrame. And I also try to change the background colour of each JPanel when user ...
1
vote
2answers
363 views
Selenium Grid showing WebDriverException error
My selenium Grid showing an error
org.openqa.selenium.WebDriverException: The path to the driver executable must be set by the webdriver.chrome.driver system property;
but i have specified it ...
0
votes
2answers
156 views
Grid Layout view Java Swing component position
I have problem using Grid Layout in Java Swing. I create Panel and add GridLayout with 4 columns and 2 rows.
I try to add JButton inside it, but the JButton stretch the width.
Look this image :
I ...
0
votes
0answers
42 views
Android(Java): Simple way to make a grid of ImageButton?
I need to make a 5 x 5 grid on a Canvas. The grid contains an ImageButton in each cell. I know how to hard-code it but is there a simple way of doing that?
1
vote
0answers
58 views
How to change JXGraph grid lines thickness
I want to make graph paper with JXGraph component. I use next methods of JXGraph for grid lines creation: setMajorX, setMinorCountX, setMajorY, setMinorCountY as (1.0, 10, 1.0, 10). Finally, I got an ...
0
votes
2answers
98 views
how do i change specific rect color on a canvas in android?
ive been trying to change the color of specific rects in an array of rects when i touch the screen but it doesnt seem to be working, heres my code:
public Paint blue = new Paint();
RandomColorGen rc;
...
1
vote
1answer
119 views
Grid and x and y coordinates
I need to make a grid where the user inputs the number of astrix in the columns and rows, so far I have this:
import java.util.Scanner;
public class Grid {
public void run(){
Scanner scan ...
1
vote
1answer
66 views
Using Coordinates to find a tile in a grid
Im trying to work out how to take the x and y of a object and find what tile in a grid it is in.
So fare i got this:
public class testingcode {
public static void main(String[] args){
//tiles ...
0
votes
1answer
57 views
JAVA Hole in Grid
I need to find "holes" in a 2D grid in java - can you point me toward the best sort of algorithm to do this?
With the input of the following points:
5,3
5,4
8,4
5,5
6,3
7,3
7,4
6,5
I need to ...
0
votes
1answer
860 views
Selenium Grid 2 parallel Test Case execution
I want to use Selenium Grid for my Testing in that I have successfully launched the Grid and Launched the HUB and NODE .. i also did set my RemoteWebdriver Capability perfectly .. but when I try run ...
0
votes
0answers
88 views
Accesisbility in GXT RowEditor text fields [closed]
I have GXT Grid , and I want to edit row by RowEditor. Problem is with TextBoxes, which aren't easily accessible. Does anybody have any ideas on how to solve this issue?
Problem is in Internet ...
0
votes
0answers
15 views
Host to align ListViewer to right in Java
I'm trying to align ListViewer to the right of the cell.
parent.setLayout(new GridLayout(3, false));
...
Button btn1 = new Button(parent, SWT.PUSH);
Button btn2 = new Button(parent, SWT.PUSH);
...
1
vote
0answers
54 views
How to implement custom nebula GridHeaderRenderer implementation?
There doesn't seem to be enough documentation here to work with, when I create a GridHeaderRenderer there are three methods to implement, but the measure and notify methods are a mystery to me, and ...
1
vote
1answer
431 views
Java learn using SWT gridlayout and griddata
I understand and can use FormLayout, FormData, FormAttachment but I can't understand how GridLayout, GridData is working. I want to learn using GridLayout and GridData because it's more like a table, ...
0
votes
1answer
63 views
How to modify a txt file with a temporary file in java?
just wondering why it is not working the code we are using...
i create a program that manages products of a store, in a specific of the program the user can add or delete products that are stored in ...
0
votes
0answers
29 views
How to manage products for a store in a grid
I was just wondering if it is possible with java to get any details of the products from a .txt database (in which is inserted the shelf position) and create a grid representative of the shelf of the ...
0
votes
1answer
40 views
Grid timing issue
I am working on moving a shape along a "grid". I seem to have finally figured things out, but I'm having a slight problem; no matter how close i try to get the specific time interval in between each ...
0
votes
0answers
94 views
Meta Data Driven Grid (Java Web Application)
We have a requirement to develop a metadata based grid for a Java application, basically we want to develop single UI screen with a Grid which can be used to view/add/update/delete multiple source ...
1
vote
2answers
261 views
How do I generate a random number between -1 and 1?
I am trying to generate a random grid and to represent an empty space, non-empty space and a space where a player is I am using -1, 0 and 1 respectively in a 2D array.
I want to be able to generate a ...





