Posts by Lucas Konrath • 296 points
4 posts
-
0
votes2
answers1377
viewsA: How to recover query parameters after clicking on pagination
If I understood what you want right, I would tell you to use Hidden inputs to store the data you need to use between a request and another, so you can recover it whenever you need it.
-
3
votes1
answer276
viewsA: How to integrate a select into a table?
How you came to use the Heapbox event onChange was not shooting as it happens in the native select. Heapbox handles the event in a different way, so the logic to change the value in the column…
-
14
votes7
answers5450
viewsA: How to write easy-to-maintain, readable code?
I prefer to use variable names and full functions even if it gets a little long, but it helps in reading the code, decreasing the need for comments because the code is self-explanatory. Ex: int…
-
1
votes1
answer286
viewsA: jQuery Mask does not read innerHTML
I’m not seeing where you use Function msalterar() and also don’t know what makes Function dfinalizar() but I imagine that after you dynamically generate a input, you shall apply again the mask. So…