EasyUI Forum
September 14, 2025, 06:18:19 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / Messager and dialog in mobile app on: April 12, 2016, 02:05:28 AM
Hi,
I am trying to show a "please wait" modal during ajax call.
Code:
$("#loginBtn").click(function(e) {

$("#dlg").html("Validating login information")
$("#dlg").dialog(
{
title: "Please wait...",
width: 200,
height: 100
});
$("#dlg").dialog("open");

But the dialog is not coming up correctly. It is going to one side like an overlay.

Also $.messager functions are not working (in fact nothing happens when they are called) in mobile browser.

I am testing with Lenovo S660 running on kitkat using a webview inside the mobile application

Pls help
2  General Category / EasyUI for jQuery / Server Response from destroyUrl / updateUrl on: May 27, 2014, 09:28:43 PM
Consider the following sample code
Code:
$('#tt').edatagrid({
    url: 'datagrid_data.json',
    saveUrl: 'savedetails.php',
    updateUrl: 'upddetails.php',
    destroyUrl: 'delrow.php'
});

and server side
Code:
//savedetails.php
<?php
extract
($_GET);
extract($_POST);
$query "insert into tab values ('$a1','$a2','$a3')";
mysql_query($query);
echo 
"Row inserted";
?>






How I can get the response of
Code:
"Row inserted"
at the front end code on addition of a new row?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!