You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ X] I checked the documentation and found no answer
[X ] I checked to make sure that this issue has not already been filed
[ X] I'm reporting the issue to the correct repository (for multi-repository projects)
Expected Behavior
My page should be generated as actually but with the sidebar that can be hidden.
Current Behavior
Actually, the side bar is fixed, cannot click on it to hide..
The side bar without ajax request is working fine, but with an ajax request that use the "argon.js..." it becomes blocked !
Failure Information (for bugs)
No errors in console, i have tested a lot of combinaison in order to find the JS that was causing my problem. And this is the argon.js
Steps to Reproduce
Create a page with a sidebar on the left
On this page make an input in order to enter text
Click on the button to submit the AJAX
It returns you the result in a dropdown button corresponding to what you enter
Select a result in the dropdown
It generates a Datatables.net table with button(copy....print..)
( 2 options : If you get out the argon.js from the second ajax(the one that load the datatables), the table will not be displayed properly )
Other option, if you keep the argon.js from the second ajax, the datatables will be displayed correctly, but the sidebar will be blocked (cannot hide it)
Please provide detailed steps for reproducing the issue.
Context
I'm sure that only one Jquery is Loaded.
I use Ajax to load my data
As something like that : `
function SendSearchBar(){
var codesa = $("#valeursearchbar").val();
if(codesa.length >= 3){
$.ajax({
url : "../../ajax/searchbar.php",
type : 'POST',
data : 'codesa=' + codesa,
dataType : 'html',
success : function(data, statut){
$('#resultatenvssearch').html(data);
},
error : function(resultat, statut, erreur){
ShowMessageNotification('error', 'Aïe ! C'est une erreur de POST ! ', 4000, 'top-end');
}
});
}
}
`
Device: Computer
Operating System: Win10
Browser and Version: Chrome/Firefox/opera
The text was updated successfully, but these errors were encountered:
Prerequisites
Expected Behavior
My page should be generated as actually but with the sidebar that can be hidden.
Current Behavior
Actually, the side bar is fixed, cannot click on it to hide..
The side bar without ajax request is working fine, but with an ajax request that use the "argon.js..." it becomes blocked !
Failure Information (for bugs)
No errors in console, i have tested a lot of combinaison in order to find the JS that was causing my problem. And this is the argon.js
Steps to Reproduce
Other option, if you keep the argon.js from the second ajax, the datatables will be displayed correctly, but the sidebar will be blocked (cannot hide it)
Please provide detailed steps for reproducing the issue.
Context
I'm sure that only one Jquery is Loaded.
I use Ajax to load my data
As something like that : `
function SendSearchBar(){
var codesa = $("#valeursearchbar").val();
if(codesa.length >= 3){
$.ajax({
url : "../../ajax/searchbar.php",
type : 'POST',
data : 'codesa=' + codesa,
dataType : 'html',
success : function(data, statut){
$('#resultatenvssearch').html(data);
},
error : function(resultat, statut, erreur){
ShowMessageNotification('error', 'Aïe ! C'est une erreur de POST ! ', 4000, 'top-end');
}
});
}
}
`
The text was updated successfully, but these errors were encountered: