Posts by tissei • 647 points
20 posts
-
0
votes1
answer138
viewsA: Problems updating registry data with dataBinding on Grails
Solved! -> Doubt in the Grails Brasil
-
2
votes1
answer138
viewsQ: Problems updating registry data with dataBinding on Grails
I have the following domains: class Cliente { static belongsTo = [empresa: Empresa] static constraints = { } } class Empresa { /* aqui temos alguns atributos*/ } By creating a new register of…
-
0
votes1
answer192
viewsQ: Problems when running on grails project
I created a new project here and I’m having trouble giving run, I’m using as ide the plugin of grails to the eclipse, it does not attest any error in the code but while trying to run I get the…
-
1
votes1
answer85
views -
0
votes1
answer85
views -
0
votes1
answer221
viewsQ: Problems accessing class attributes when creating java-based System action
Well I have a class that extends a JPanel, in that JPanel i add a JButton and use the method addActionListener to set a ActionListener for this one JButton, but when I’m creating the ActionListener…
-
2
votes1
answer68
viewsQ: Problems in the installation of Grails
I set the variables GRAILS_HOME and JAVA_HOME that I used to use for the Griffon, but when trying to access the Grails I get the following error:…
-
1
votes1
answer20770
viewsQ: Create Object Array in java and access objects directly
So I need to do the following I have a class with some attributes and methods, I need to generate a array of objects of this class, however I wanted to be able to access them directly, currently…
-
2
votes1
answer575
viewsA: Send variable to the layout in laravel4 with Blade
I did it using view::share in controller to share a variable in all my views $page = 'Atendentes'; View::share('page', $page);
-
-1
votes1
answer575
viewsQ: Send variable to the layout in laravel4 with Blade
I have a problem here I need to send a variable to my layout, I tried so: On the controller $this->layout->page = 'Atendentes'; and in the layout that @yield('page') the problem is that I need…
-
6
votes2
answers437
viewsQ: How to access jTextField statico created with swing?
So guys I got one jTextField that works normally but when I put it as static the setText no longer works, and I need it static because I pass the same to a function, I did it without the swing and…
-
0
votes3
answers257
viewsA: Problem with Jquery UI Slide Left
You know you can do this with the translate in transitions and animations of css ??
-
6
votes3
answers4083
viewsQ: Running jar in client from browser
I need to run a jar file that should be on the client’s pc over the web and pass some parameters to this jar, I managed to do this with the exec() php: exec('java -jar…
-
7
votes1
answer658
viewsQ: How to generate Jlabel or Jtextfield at mouse click?
I wonder if there is a way to generate a JLabel or JTextField at the position where you click, on a JPanel or a JFrame. It is possible?…
-
3
votes2
answers2185
viewsQ: Transparent java background
I have a problem with background transparent of a JTextField, by changing the content of JTextField it seems to superimpose the text and get all mixed up: I’m setting the background like this:…
-
5
votes1
answer384
viewsQ: Problem with Java timer
Explanation: I have a component JTextField that would be a regressive counter, but when I use the ActionListener in this way: public static ActionListener alredBGolem = new ActionListener() { public…
-
9
votes1
answer5562
viewsQ: Creating timer with JAVA
Guys in need of a help here want to make a timer with Jframe more not being able to make it repeat until it reaches zero, and if I leave the setRepeats in true I can’t make it stop when it reaches…
-
0
votes2
answers241
viewsQ: Firing CSS Transition when performing ajax request
I’m trying to do the following, before the element gets the answer ajax opacity from it to 0 and trigger the transition, until then this working beauty, the question is that after I pass the…
-
7
votes4
answers8200
viewsQ: How to send text to the printer with PHP and Javascript?
I need to print a text that is not necessarily contained in the html document on a client-installed printer, I need to open that window to select printers and so on and send the print. // EDIT In…
-
6
votes4
answers7584
viewsQ: How to use AJAX with Laravel?
I have a select that when I change its value it should reorder a list, e.g.: by id, name, etc. without Laravel I would use a function onchange and pass the sorting pattern to a PHP page that would…