| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/imobles/ui/theme/lrsys/lib/ |
Upload File : |
$(document).ready(function () {
var result = $("#result");
var _url = $("#_url").val();
result.hide();
$('.progress').show();
$('.progress .progress-bar').progressbar();
$.post(_url + 'search/users/', {
utype: 'All'
})
.done(function (data) {
setTimeout(function () {
var sbutton = $("#search");
sbutton.html('Search');
sbutton.removeClass("btn-danger");
$('.progress').hide();
result.html(data);
result.show();
$("#txtloading").html("Manage Users");
}, 2000);
});
var $modal = $('#ajax-modal');
result.on('click', 'tr', function(){
$('body').modalmanager('loading');
var uid = this.id;
setTimeout(function(){
$modal.load( _url + 'view/user/' + uid + '/', '', function(){
$modal.modal();
});
}, 1000);
});
$("#search").click(function (e) {
e.preventDefault();
$("#result").hide();
$('.progress').show();
$('.progress .progress-bar').progressbar();
$(this).html("Searching...");
$(this).addClass("btn-danger");
var _url = $("#_url").val();
$.post(_url + 'search/ps/', {
txtsearch: $('#txtsearch').val(),
stype: $('#stype').val()
})
.done(function (data) {
setTimeout(function () {
var sbutton = $("#search");
var result = $("#result");
sbutton.html('Search');
sbutton.removeClass("btn-danger");
$('.progress').hide();
result.html(data);
result.show();
}, 2000);
});
});
});