EasyUI Forum
April 17, 2024, 11:05:21 PM *
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 / Re: Load window content via ajax on: July 04, 2022, 08:30:41 AM
I understand  Wink
Code:
onclick="$('#w').window('open'); $('#w').window('refresh', 'get_content.php')"
2  General Category / EasyUI for jQuery / Load window content via ajax on: July 04, 2022, 08:20:07 AM
Hello guys! I can not figure out how to load content into the window, I call the window through
Code:
onclick="$('#w').window('open')"
but I can't figure out how to use
Code:
    $('#w').window('refresh', 'get_content.php');
3  General Category / EasyUI for jQuery / Re: Open image with easyui-filebox on: June 20, 2022, 08:11:11 AM
Thank you, everything works, but only the second time, the first time does not work
4  General Category / EasyUI for jQuery / Re: Open image with easyui-filebox on: June 19, 2022, 10:47:23 AM
Did this
Code:
$('#addFileBox').filebox({
onChange: function(value){
$('#imagePack').attr('src', value);
}
});
but the problem is that only the file name is indicated, but the full path is needed
5  General Category / EasyUI for jQuery / Open image with easyui-filebox on: June 19, 2022, 05:42:16 AM
Hello everyone, tell me how to open an image in
Code:
<img id="myImg">
using easyui-filebox, I can’t figure something out
6  General Category / EasyUI for jQuery / Re: problem Location: .php on: May 19, 2015, 04:45:57 AM
unfortunately it does not help, call forwarding is still in a message box
7  General Category / EasyUI for jQuery / problem Location: .php on: May 18, 2015, 02:20:21 AM
Hello everyone!
please tell me how to perform a redirect to the page condition

example:
Code:
function submitForm(){
            $('#ff').form({
    url:'.php',
    onSubmit: function(param){
        param.p1 = 'submit';       
    },
    success:function(data){
        $.messager.alert('Error',data,'error');
    }
});
// submit the form
$('#ff').submit();
        }

end PHP

Code:
if {
header("Location: index.php"); exit();   
}
else
{
echo <<<INFO
Error
INFO;
}

in this form, a page in a message box
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!