Posts by Bruno • 96 points
8 posts
-
0
votes1
answer40
viewsQ: Database Encoding - German Characters
I come across a strange situation, when I try to insert German characters(ě,ě) into the database they are inserted as follows: "üüü " The field is defined as utf8_general_ci If you enter the data…
-
0
votes1
answer51
viewsA: How to store images within the application?
You can place the image in a folder and then when generating the jar generate with the folder as well
-
1
votes1
answer82
viewsA: PHP and Javascript - Selected checkbox value storage (in Session)
$('input[type=checkbox]').on(click,function() { alert($(this).attr('id')); }); or $('.cb').on(click,function() { alert($(this).attr('id')); }); JAVASCRIPT function showMe(element){…
-
1
votes2
answers185
viewsA: How to know which methods and properties I put in a class?
There is no software to perform system analysis alone. As such methods and properties are defined from your needs. Modelling the system on UML would have the advantage of knowing beforehand what its…
-
1
votes2
answers1231
viewsA: Change cell color of a table by changing the backgroud and the text to be displayed
For a more complete answer, it would be good if the html structure is available. To call the function add to the location where you will click onClick(status()) or through Jquery: $('class or…
-
0
votes2
answers578
viewsA: How do I block access to an application from the user’s IP?
First of all you have to make sure that the registered user with permission to access from abroad uses a static ip (otherwise you can use software to help at that point). One of the alternatives…
-
1
votes1
answer39
viewsA: Create a Read More with jQuery
var $el, $ps, $up, totalHeight; $(".sidebar-box .button").click(function() { totalHeight = 0 $el = $(this); $p = $el.parent(); $up = $p.parent(); $ps = $up.find("p:not('.read-more')"); // measure…
-
4
votes0
answers149
views