EasyUI Forum

General Category => General Discussion => Topic started by: rob on January 31, 2014, 01:28:02 AM



Title: Feature Request: Panel Content Loading via POST
Post by: rob on January 31, 2014, 01:28:02 AM
The panel href attribute can be used to request the panel content via AJAX. It would be great to have the possibility to use POST instead of (the default) GET, when there are a lot of parameters which are to big for GET.


Title: Re: Feature Request: Panel Content Loading via POST
Post by: stworthy on February 03, 2014, 08:46:45 AM
Please try to download the updated panel plugin from http://www.jeasyui.com/easyui/plugins/jquery.panel.js and include to the page. The 'method' property can be used to set the ajax method.
Code:
<div class="easyui-panel" style="width:800px;height:400px" data-options="
        href: ...,
        method: 'post',
        queryParams: {...}
    ">
</div>


Title: Re: Feature Request: Panel Content Loading via POST
Post by: rob on February 11, 2014, 06:52:51 AM
Thanks a lot for the quick reply, works perfect :-D