Posts by Jao Assy • 191 points
10 posts
-
2
votes1
answer36
viewsA: Use of CSS Display
The display:None itself does not affect the performance of the site since the css is processed by the client and not the server, however the hidden content is rather a feature expense, since it will…
-
0
votes1
answer80
views -
1
votes1
answer217
viewsA: Move div to another div and update database
Using Jquery sortable you can add an update attribute and from there make the changes in the database. $("#foo").sortable({ update: function(event, ui){ // a posição do item reposicionado var indice…
-
0
votes1
answer406
viewsA: how to allow access to the . htaccess file
Make sure apache mod_rewrite is enabled, you can enable it via terminal on linux: a2enmod rewrite or (in windows) via apache httpd.conf file that contains the modules, just uncomment the line with…
-
0
votes1
answer604
viewsA: AJAX request error - ASP. Net and Jquery
Missed sending of variable date as function setting: success: function () { populaTabela(data); }, That way it stays success: function (data) { populaTabela(data); },…
-
2
votes3
answers736
views -
2
votes1
answer122
viewsA: IF in Reply function POST does not work
I believe there are three possibilities: 1 - the function function(resposta){} of your code represents the parameter success of function $.post; This means that it only executes if the function…
-
1
votes1
answer383
views -
0
votes1
answer84
viewsA: How to restrict some BD iterations?
Considering the table idHistorico int PRIMARY AI idProjeto int situacao varchar(255) Suffice: SELECT maxh.id, h1.idProjeto FROM historico_projetos h1 INNER JOIN ( SELECT MAX(idHistorico) AS id FROM…
postgresqlanswered Jao Assy 191 -
2
votes1
answer453
viewsA: Calendar Per Week Page
Assuming your date is in the format: Y-m-d Your sql for the search would be: $sql ="SELECT * FROM os where status2 <> 'Fechado' AND start1 BETWEEN ".$dataRecebida." AND ".$proximaData." ";…