EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Opan Mustopah on February 23, 2015, 09:00:44 PM



Title: about using plugins folder easyui
Post by: Opan Mustopah on February 23, 2015, 09:00:44 PM
hello again,

i have a simple question about plugins folder that contain in easyui file zip.

can i using easyui without load all plugins inside plugins folder? because for all this time, i always load all plugins that make my application slow.

many thanks for the answer


Title: Re: about using plugins folder easyui
Post by: jarry on February 23, 2015, 11:23:57 PM
You don't need to load all the plugins, please use 'easyloader' to load what plugins you want. For more information please refer to http://www.jeasyui.com/documentation/easyloader.php


Title: Re: about using plugins folder easyui
Post by: WizPS on September 05, 2019, 11:43:27 PM
How about the extension library? How do I include e.g. DataGrid Filter Row?

Code:
using(['datagrid'], function(){
   var dg = $('#dg');
   dg.datagrid();    // create datagrid
   dg.datagrid('enableFilter');    // enable filter
});