Posts by Fernando Muniz Erthal • 43 points
6 posts
-
0
votes1
answer68
viewsQ: What Spring annotation I need to use with Mqttcallback messageArrived
I am new to Spring and am trying to insert in my Mysql database from the message received from MQTT. I created my application as follows: public static void main(String[] args) throws…
-
0
votes0
answers141
viewsQ: How to create an alarm clock with Mozilla Notifications
Hello, I am developing an agenda in JSP, the agenda is already fully ready, missing only warn an alarm clock that I am wanting to do, the same should work as follows.. From x time before the events…
-
0
votes0
answers110
viewsQ: Spinner jQuery-UI no Up and Down buttons appear, conflict with bootstrap
I’m using the following component: http://jqueryui.com/spinner/#time As shown in the example, but in a modal bootstrap.. The problem is that my Spinner does not appear the Up and Down buttons,…
-
0
votes3
answers2875
viewsA: How to add tabs to my modal bootstrap
I discovered the problem.. At the end I had an old CSS that set style in UL, I didn’t remember that this CSS existed.. Sorry for the error, now it’s showing ;) thank you.
-
0
votes3
answers2875
viewsQ: How to add tabs to my modal bootstrap
I’m using the twitter bootstrap library version 4.0 I managed to create a modal window but I would like to add tabs on it, I found some codes but I couldn’t implement them.. Keep going like I’m…
-
3
votes2
answers612
viewsQ: JSP - Using request in a method
I am trying to use a request within a method as follows: <%! public void method() { RequestDispatcher disp = request.getRequestDispatcher("t2.jsp"); disp.forward(request, response); }; %> But…