Posts by Gerson Macedo • 61 points
3 posts
-
4
votes1
answer238
viewsQ: Data Source - Best way to organize methods/classes pertaining to the entire table?
In my company we work with models based on the "Active Record" standard, that is, the model methods are always related to the operations of a unique database record, for example: Class User { int…
-
0
votes1
answer950
viewsQ: Table with column and fixed Scrolls
I need to make a table with the first column fixed and with fixed lateral scroll, as the example of this link: http://hazaa.com.au/blog/how-to-create-an-html-table-with-frozen-headers-and-columns/…
-
2
votes2
answers579
viewsA: Pull PHP information via AJAX with jQuery in json format
If the problem is just getting in js what you are sending from PHP, just make a call with $.ajax, passing the PHP page and dataType: "json". http://api.jquery.com/jquery.ajax/…