Posts by TalesM • 236 points
5 posts
-
3
votes2
answers1100
viewsA: Why in the debug of C++ accented words and c cedilla appearing uncompromised?
Short answer Because Windows was made at the base of the gambiarra and so the console uses a different encoding of the Visual Studio interface. If you make a program using GUI you won’t have that…
-
1
votes2
answers193
viewsA: Date Picker opens itself when it changes neighbor input
I believe your error is precisely in the date-changing code. I searched the documentation and there is no such option change, then I think this is generating some event that is interpreted as a…
-
5
votes1
answer280
viewsA: Using SPA (Single page application) and browser back button
There are two ways to do this: Hash Links It is given by the use of hash links, such as www.meusite.com#conteudo. Whereas conteudo changes every transition you want to be returnable. For example:…
-
1
votes3
answers4136
viewsA: Update a table using javascript and arrays
Do you really need to send each new product immediately to the server? If yes, you will need to use some type of AJAX to communicate with the server without reloading the page. But if you can "wait"…
-
2
votes1
answer197
viewsA: How to link a class variable to c++ in lua script?
There is no standard way to establish variable access in LUA. You have two options to circumvent this: Getter and Setters The first one is easier, but it can look kind of ugly. You can create…