`
easonfans
  • 浏览: 253023 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Extjs之客户端查询

阅读更多

  和大家分享一个我在www.extjs.com上找的插件,该插件可以执行客户端查询,说白了就是只能在本页做查询动作,没有和服务器交互.代码如下

Jscript代码 复制代码
  1. // vim: ts=4:sw=4:nu:fdc=4:nospell   
  2.   
  3. /**  
  4.  
  5.  * Search plugin for Ext.grid.GridPanel, Ext.grid.EditorGrid ver. 2.x or subclasses of them  
  6.  
  7.  *  
  8.  
  9.  * @author    Ing. Jozef Sakalos  
  10.  
  11.  * @copyright (c) 2008, by Ing. Jozef Sakalos  
  12.  
  13.  * @date      17. January 2008  
  14.  
  15.  * @version   $Id: Ext.ux.grid.Search.js 120 2008-03-31 00:09:05Z jozo $  
  16.  
  17.  *  
  18.  
  19.  * @license Ext.ux.grid.Search is licensed under the terms of  
  20.  
  21.  * the Open Source LGPL 3.0 license.  Commercial use is permitted to the extent  
  22.  
  23.  * that the code/component(s) do NOT become part of another Open Source or Commercially  
  24.  
  25.  * licensed development library or toolkit without explicit permission.  
  26.  
  27.  *   
  28.  
  29.  * License details: http://www.gnu.org/licenses/lgpl.html  
  30.  
  31.  */  
  32.   
  33.   
  34.   
  35. /*global Ext */  
  36.   
  37.   
  38.   
  39. Ext.ns('Ext.ux.grid');   
  40.   
  41.   
  42.   
  43. /**  
  44.  
  45.  * @class Ext.ux.grid.Search  
  46.  
  47.  * @extends Ext.util.Observable  
  48.  
  49.  * @param {Object} config configuration object  
  50.  
  51.  * @constructor  
  52.  
  53.  */  
  54.   
  55. Ext.ux.grid.Search = function(config) {   
  56.   
  57.     Ext.apply(this, config);   
  58.   
  59.     Ext.ux.grid.Search.superclass.constructor.call(this);   
  60.   
  61. }; // eo constructor   
  62.   
  63.   
  64.   
  65. Ext.extend(Ext.ux.grid.Search, Ext.util.Observable, {   
  66.   
  67.     /**  
  68.  
  69.      * @cfg {String} searchText Text to display on menu button  
  70.  
  71.      */  
  72.   
  73.      searchText:'Search'  
  74.   
  75.   
  76.   
  77.     /**  
  78.  
  79.      * @cfg {String} searchTipText Text to display as input tooltip. Set to '' for no tooltip  
  80.  
  81.      */    
  82.   
  83.     ,searchTipText:'Type a text to search and press Enter'  
  84.   
  85.   
  86.   
  87.     /**  
  88.  
  89.      * @cfg {String} selectAllText Text to display on menu item that selects all fields  
  90.  
  91.      */  
  92.   
  93.     ,selectAllText:'Select All'  
  94.   
  95.   
  96.   
  97.     /**  
  98.  
  99.      * @cfg {String} position Where to display the search controls. Valid values are top and bottom (defaults to bottom)  
  100.  
  101.      * Corresponding toolbar has to exist at least with mimimum configuration tbar:[] for position:top or bbar:[]  
  102.  
  103.      * for position bottom. Plugin does NOT create any toolbar.  
  104.  
  105.      */  
  106.   
  107.     ,position:'bottom'  
  108.   
  109.   
  110.   
  111.     /**  
  112.  
  113.      * @cfg {String} iconCls Icon class for menu button (defaults to icon-magnifier)  
  114.  
  115.      */  
  116.   
  117.     ,iconCls:'icon-magnifier'  
  118.   
  119.   
  120.   
  121.     /**  
  122.  
  123.      * @cfg {String/Array} checkIndexes Which indexes to check by default. Can be either 'all' for all indexes  
  124.  
  125.      * or array of dataIndex names, e.g. ['persFirstName', 'persLastName']  
  126.  
  127.      */  
  128.   
  129.     ,checkIndexes:'all'  
  130.   
  131.   
  132.   
  133.     /**  
  134.  
  135.      * @cfg {Array} disableIndexes Array of index names to disable (not show in the menu), e.g. ['persTitle', 'persTitle2']  
  136.  
  137.      */  
  138.   
  139.     ,disableIndexes:[]   
  140.   
  141.   
  142.   
  143.     /**  
  144.  
  145.      * @cfg {String} dateFormat how to format date values. If undefined (the default)   
  146.  
  147.      * date is formatted as configured in colummn model  
  148.  
  149.      */  
  150.   
  151.     ,dateFormat:undefined   
  152.   
  153.   
  154.   
  155.     /**  
  156.  
  157.      * @cfg {Boolean} showSelectAll Select All item is shown in menu if true (defaults to true)  
  158.  
  159.      */  
  160.   
  161.     ,showSelectAll:true  
  162.   
  163.   
  164.   
  165.     /**  
  166.  
  167.      * @cfg {String} mode Use 'remote' for remote stores or 'local' for local stores. If mode is local  
  168.  
  169.      * no data requests are sent to server the grid's store is filtered instead (defaults to 'remote')  
  170.  
  171.      */  
  172.   
  173.     ,mode:'remote'  
  174.   
  175.   
  176.   
  177.     /**  
  178.  
  179.      * @cfg {Number} width Width of input field in pixels (defaults to 100)  
  180.  
  181.      */  
  182.   
  183.     ,width:100   
  184.   
  185.   
  186.   
  187.     /**  
  188.  
  189.      * @cfg {String} xtype xtype is usually not used to instantiate this plugin but you have a chance to identify it  
  190.  
  191.      */  
  192.   
  193.     ,xtype:'gridsearch'  
  194.   
  195.   
  196.   
  197.     /**  
  198.  
  199.      * @cfg {Object} paramNames Params name map (defaults to {fields:'fields', query:'query'}  
  200.  
  201.      */  
  202.   
  203.     ,paramNames: {   
  204.   
  205.          fields:'fields'  
  206.   
  207.         ,query:'query'  
  208.   
  209.     }   
  210.   
  211.   
  212.   
  213.     /**  
  214.  
  215.      * @cfg {String} shortcutKey Key to fucus the input field (defaults to r = Sea_r_ch). Empty string disables shortcut  
  216.  
  217.      */  
  218.   
  219.     ,shortcutKey:'r'  
  220.   
  221.   
  222.   
  223.     /**  
  224.  
  225.      * @cfg {String} shortcutModifier Modifier for shortcutKey. Valid values: alt, ctrl, shift (defaults to alt)  
  226.  
  227.      */  
  228.   
  229.     ,shortcutModifier:'alt'  
  230.   
  231.   
  232.   
  233.     /**  
  234.  
  235.      * @cfg {String} align 'left' or 'right' (defaults to 'left')  
  236.  
  237.      */  
  238.   
  239.   
  240.   
  241.     /**  
  242.  
  243.      * @cfg {Number} minLength force user to type this many character before he can make a search  
  244.  
  245.      */  
  246.   
  247.   
  248.   
  249.     /**  
  250.  
  251.      * @cfg {Ext.Panel/String} toolbarContainer Panel (or id of the panel) which contains toolbar we want to render  
  252.  
  253.      * search controls to (defaults to this.grid, the grid this plugin is plugged-in into)  
  254.  
  255.      */  
  256.   
  257.        
  258.   
  259.     // {{{   
  260.   
  261.     /**  
  262.  
  263.      * private  
  264.  
  265.      * @param {Ext.grid.GridPanel/Ext.grid.EditorGrid} grid reference to grid this plugin is used for  
  266.  
  267.      */  
  268.   
  269.     ,init:function(grid) {   
  270.   
  271.         this.grid = grid;   
  272.   
  273.   
  274.   
  275.         // setup toolbar container if id was given   
  276.   
  277.         if('string' === typeof this.toolbarContainer) {   
  278.   
  279.             this.toolbarContainer = Ext.getCmp(this.toolbarContainer);   
  280.   
  281.         }   
  282.   
  283.   
  284.   
  285.         // do our processing after grid render and reconfigure   
  286.   
  287.         grid.onRender = grid.onRender.createSequence(this.onRender, this);   
  288.   
  289.         grid.reconfigure = grid.reconfigure.createSequence(this.reconfigure, this);   
  290.   
  291.     } // eo function init   
  292.   
  293.     // }}}   
  294.   
  295.     // {{{   
  296.   
  297.     /**  
  298.  
  299.      * private add plugin controls to <b>existing</b> toolbar and calls reconfigure  
  300.  
  301.      */  
  302.   
  303.     ,onRender:function() {   
  304.   
  305.         var panel = this.toolbarContainer || this.grid;   
  306.   
  307.         var tb = 'bottom' === this.position ? panel.bottomToolbar : panel.topToolbar;   
  308.   
  309.   
  310.   
  311.         // add menu   
  312.   
  313.         this.menu = new Ext.menu.Menu();   
  314.   
  315.   
  316.   
  317.         // handle position   
  318.   
  319.         if('right' === this.align) {   
  320.   
  321.             tb.addFill();   
  322.   
  323.         }   
  324.   
  325.         else {   
  326.   
  327.             tb.addSeparator();   
  328.   
  329.         }   
  330.   
  331.   
  332.   
  333.         // add menu button   
  334.   
  335.         tb.add({   
  336.   
  337.              text:this.searchText   
  338.   
  339.             ,menu:this.menu   
  340.   
  341.             ,iconCls:this.iconCls   
  342.   
  343.         });   
  344.   
  345.   
  346.   
  347.         // add input field (TwinTriggerField in fact)   
  348.   
  349.         this.field = new Ext.form.TwinTriggerField({   
  350.   
  351.              width:this.width   
  352.   
  353.             ,selectOnFocus:undefined === this.selectOnFocus ? true : this.selectOnFocus   
  354.   
  355.             ,trigger1Class:'x-form-clear-trigger'  
  356.   
  357.             ,trigger2Class:'x-form-search-trigger'  
  358.   
  359.             ,onTrigger1Click:this.onTriggerClear.createDelegate(this)   
  360.   
  361.             ,onTrigger2Click:this.onTriggerSearch.createDelegate(this)   
  362.   
  363.             ,minLength:this.minLength   
  364.   
  365.         });   
  366.   
  367.   
  368.   
  369.         // install event handlers on input field   
  370.   
  371.         this.field.on('render'function() {   
  372.   
  373.             this.field.el.dom.qtip = this.searchTipText;   
  374.   
  375.   
  376.   
  377.             // install key map   
  378.   
  379.             var map = new Ext.KeyMap(this.field.el, [{   
  380.   
  381.                  key:Ext.EventObject.ENTER   
  382.   
  383.                 ,scope:this  
  384.   
  385.                 ,fn:this.onTriggerSearch   
  386.   
  387.             },{   
  388.   
  389.                  key:Ext.EventObject.ESC   
  390.   
  391.                 ,scope:this  
  392.   
  393.                 ,fn:this.onTriggerClear   
  394.   
  395.             }]);   
  396.   
  397.             map.stopEvent = true;   
  398.   
  399.         }, this, {single:true});   
  400.   
  401.   
  402.   
  403.         tb.add(this.field);   
  404.   
  405.   
  406.   
  407.         // reconfigure   
  408.   
  409.         this.reconfigure();   
  410.   
  411.   
  412.   
  413.         // keyMap   
  414.   
  415.         if(this.shortcutKey && this.shortcutModifier) {   
  416.   
  417.             var shortcutEl = this.grid.getEl();   
  418.   
  419.             var shortcutCfg = [{   
  420.   
  421.                  key:this.shortcutKey   
  422.   
  423.                 ,scope:this  
  424.   
  425.                 ,stopEvent:true  
  426.   
  427.                 ,fn:function() {   
  428.   
  429.                     this.field.focus();   
  430.   
  431.                 }   
  432.   
  433.             }];   
  434.   
  435.             shortcutCfg[0][this.shortcutModifier] = true;   
  436.   
  437.             this.keymap = new Ext.KeyMap(shortcutEl, shortcutCfg);   
  438.   
  439.         }   
  440.   
  441.     } // eo function onRender   
  442.   
  443.     // }}}   
  444.   
  445.     // {{{   
  446.   
  447.     /**  
  448.  
  449.      * private Clear Trigger click handler  
  450.  
  451.      */  
  452.   
  453.     ,onTriggerClear:function() {   
  454.   
  455.         this.field.setValue('');   
  456.   
  457.         this.field.focus();   
  458.   
  459.         this.onTriggerSearch();   
  460.   
  461.     } // eo function onTriggerClear   
  462.   
  463.     // }}}   
  464.   
  465.     // {{{   
  466.   
  467.     /**  
  468.  
  469.      * private Search Trigger click handler (executes the search, local or remote)  
  470.  
  471.      */  
  472.   
  473.     ,onTriggerSearch:function() {   
  474.   
  475.         if(!this.field.isValid()) {   
  476.   
  477.             return;   
  478.   
  479.         }   
  480.   
  481.         var val = this.field.getValue();   
  482.   
  483.         var store = this.grid.store;   
  484.   
  485.   
  486.   
  487.         // grid's store filter   
  488.   
  489.         if('local' === this.mode) {   
  490.   
  491.             store.clearFilter();   
  492.   
  493.             if(val) {   
  494.   
  495.                 store.filterBy(function(r) {   
  496.   
  497.                     var retval = false;   
  498.   
  499.                     this.menu.items.each(function(item) {   
  500.   
  501.                         if(!item.checked || retval) {   
  502.   
  503.                             return;   
  504.   
  505.                         }   
  506.   
  507.                         var rv = r.get(item.dataIndex);   
  508.   
  509.                         rv = rv instanceof Date ? rv.format(this.dateFormat || r.fields.get(item.dataIndex).dateFormat) : rv;   
  510.   
  511.                         var re = new RegExp(val, 'gi');   
  512.   
  513.                         retval = re.test(rv);   
  514.   
  515.                     }, this);   
  516.   
  517.                     if(retval) {   
  518.   
  519.                         return true;   
  520.   
  521.                     }   
  522.   
  523.                     return retval;   
  524.   
  525.                 }, this);   
  526.   
  527.             }   
  528.   
  529.             else {   
  530.   
  531.             }   
  532.   
  533.         }   
  534.   
  535.         // ask server to filter records   
  536.   
  537.         else {   
  538.   
  539.             // clear start (necessary if we have paging)   
  540.   
  541.             if(store.lastOptions && store.lastOptions.params) {   
  542.   
  543.                 store.lastOptions.params[store.paramNames.start] = 0;   
  544.   
  545.             }   
  546.   
  547.   
  548.   
  549.             // get fields to search array   
  550.   
  551.             var fields = [];   
  552.   
  553.             this.menu.items.each(function(item) {   
  554.   
  555.                 if(item.checked) {   
  556.   
  557.                     fields.push(item.dataIndex);   
  558.   
  559.                 }   
  560.   
  561.             });   
  562.   
  563.   
  564.   
  565.             // add fields and query to baseParams of store   
  566.   
  567.             delete(store.baseParams[this.paramNames.fields]);   
  568.   
  569.             delete(store.baseParams[this.paramNames.query]);   
  570.   
  571.             if (store.lastOptions && store.lastOptions.params) {   
  572.   
  573.                 delete(store.lastOptions.params[this.paramNames.fields]);   
  574.   
  575.                 delete(store.lastOptions.params[this.paramNames.query]);   
  576.   
  577.             }   
  578.   
  579.             if(fields.length) {   
  580.   
  581.                 store.baseParams[this.paramNames.fields] = Ext.encode(fields);   
  582.   
  583.                 store.baseParams[this.paramNames.query] = val;   
  584.   
  585.             }   
  586.   
  587.   
  588.   
  589.             // reload store   
  590.   
  591.             store.reload();   
  592.   
  593.         }   
  594.   
  595.   
  596.   
  597.     } // eo function onTriggerSearch   
  598.   
  599.     // }}}   
  600.   
  601.     // {{{   
  602.   
  603.     /**  
  604.  
  605.      * @param {Boolean} true to disable search (TwinTriggerField), false to enable  
  606.  
  607.      */  
  608.   
  609.     ,setDisabled:function() {   
  610.   
  611.         this.field.setDisabled.apply(this.field, arguments);   
  612.   
  613.     } // eo function setDisabled   
  614.   
  615.     // }}}   
  616.   
  617.     // {{{   
  618.   
  619.     /**  
  620.  
  621.      * Enable search (TwinTriggerField)  
  622.  
  623.      */  
  624.   
  625.     ,enable:function() {   
  626.   
  627.         this.setDisabled(false);   
  628.   
  629.     } // eo function enable   
  630.   
  631.     // }}}   
  632.   
  633.     // {{{   
  634.   
  635.     /**  
  636.  
  637.      * Enable search (TwinTriggerField)  
  638.  
  639.      */  
  640.   
  641.     ,disable:function() {   
  642.   
  643.         this.setDisabled(true);   
  644.   
  645.     } // eo function disable   
  646.   
  647.     // }}}   
  648.   
  649.     // {{{   
  650.   
  651.     /**  
  652.  
  653.      * private (re)configures the plugin, creates menu items from column model  
  654.  
  655.      */  
  656.   
  657.     ,reconfigure:function() {   
  658.   
  659.   
  660.   
  661.         // {{{   
  662.   
  663.         // remove old items   
  664.   
  665.         var menu = this.menu;   
  666.   
  667.         menu.removeAll();   
  668.   
  669.   
  670.   
  671.         // add Select All item plus separator   
  672.   
  673.         if(this.showSelectAll) {   
  674.   
  675.             menu.add(new Ext.menu.CheckItem({   
  676.   
  677.                  text:this.selectAllText   
  678.   
  679.                 ,checked:!(this.checkIndexes instanceof Array)   
  680.   
  681.                 ,hideOnClick:false  
  682.   
  683.                 ,handler:function(item) {   
  684.   
  685.                     var checked = ! item.checked;   
  686.   
  687.                     item.parentMenu.items.each(function(i) {   
  688.   
  689.                         if(item !== i && i.setChecked) {   
  690.   
  691.                             i.setChecked(checked);   
  692.   
  693.                         }   
  694.   
  695.                     });   
  696.   
  697.                 }   
  698.   
  699.             }),'-');   
  700.   
  701.         }   
  702.   
  703.   
  704.   
  705.         // }}}   
  706.   
  707.         // {{{   
  708.   
  709.         // add new items   
  710.   
  711.         var cm = this.grid.colModel;   
  712.   
  713.         Ext.each(cm.config, function(config) {   
  714.   
  715.             var disable = false;   
  716.   
  717.             if(config.header && config.dataIndex) {   
  718.   
  719.                 Ext.each(this.disableIndexes, function(item) {   
  720.   
  721.                     disable = disable ? disable : item === config.dataIndex;   
  722.   
  723.                 });   
  724.   
  725.                 if(!disable) {   
  726.   
  727.                     menu.add(new Ext.menu.CheckItem({   
  728.   
  729.                          text:config.header   
  730.   
  731.                         ,hideOnClick:false  
  732.   
  733.                         ,checked:'all' === this.checkIndexes   
  734.   
  735.                         ,dataIndex:config.dataIndex   
  736.   
  737.                     }));   
  738.   
  739.                 }   
  740.   
  741.             }   
  742.   
  743.         }, this);   
  744.   
  745.         // }}}   
  746.   
  747.         // {{{   
  748.   
  749.         <span
    分享到:
    评论

相关推荐

    Extjs 富客户端技术

    这是一个关于ajax的框架, 是一个富客户端的技术,希望对大家有用!

    ExtJs实例,富客户端技术经典

    ExtJS是一种基于JavaScript的开源富客户端框架,专为构建企业级Web应用程序而设计。它提供了丰富的组件库,包括数据网格、表单、图表和其他UI元素,使得开发者可以创建功能强大且用户友好的交互式界面。这个"ExtJs...

    extjs 在线sql查询

    ExtJS 是一个流行的JavaScript框架,用于构建富客户端的Web应用程序。它提供了丰富的组件库和强大的数据绑定机制,使得开发者能够创建交互性强、功能丰富的Web应用。在“在线SQL查询”这个场景中,ExtJS 被用来构建...

    自定义高级查询Extjs

    在这个场景中,"自定义高级查询Extjs"指的是利用Ext JS框架来构建这样的功能。Ext JS是一个流行的JavaScript库,用于创建富客户端应用程序,特别是与数据展示和操作相关的Web应用。 1. **Ext JS简介** - Ext JS...

    ExtJs3.0,客户端技术,与后台无关,界面美观

    ExtJs,客户端开发技术,以后可能会发展为主流客户端框架,界面非常美观,希望大家能够深入学习

    extjs2.0 画的一个带查询条件和查询结果的页面

    ExtJS 是一个强大的JavaScript库,专门用于构建富客户端应用程序,特别是Web应用。在"extjs2.0 画的一个带查询条件和查询结果的页面"这个主题中,我们主要探讨如何使用ExtJS 2.0版本来设计一个具有搜索功能的用户...

    extJS ext 自学 富客户端

    extJS ext 自学 富客户端,掏钱自学extjs。

    ExtJS 通用查询

    ExtJS 是一个强大的JavaScript库,专门用于构建富客户端的Web应用程序。它提供了丰富的组件和工具,使得开发人员能够创建复杂的用户界面。在本例中,我们关注的是ExtJS中的通用查询功能,这是一个允许用户动态构建多...

    ExtJs通用筛选查询控件

    ExtJs是一种基于JavaScript的富客户端应用开发框架,它由Sencha公司开发,提供了一套完整的组件化、MVC模式的前端开发解决方案。在ExtJs中,"通用筛选查询控件"是一个常见且实用的功能,它允许用户在数据网格中进行...

    ExtJs开始之旅

    ExtJS 是一个强大的JavaScript 应用程序框架,用于构建富客户端Web应用。它提供了一套完整的组件模型,包括丰富的用户界面组件,以及一套强大的数据处理和远程通信机制。本讲将带你开启ExtJS的探索之旅,通过四个...

    extjs加水印

    EXTJS是一个强大的JavaScript库,用于构建富客户端的Web应用程序,而水印则是一种有效的方法,可以防止用户对屏幕内容进行未经许可的复制或拍照。 首先,我们来看EXTJS中的水印实现。EXTJS允许开发者自定义组件,...

    ExtJs Google Suggest 动态查询效果

    ExtJs是一种基于JavaScript的富客户端应用框架,专用于构建交互式、桌面级的Web应用程序。在本示例中,"ExtJs Google Suggest 动态查询效果" 是一个利用ExtJs实现的功能,它模仿了谷歌搜索框的自动建议功能。当你在...

    Extjs2分页树 带查询功能

    ExtJS 是一个强大的JavaScript 框架,用于构建富客户端应用程序。在ExtJS中,"分页树"是一种结合了树形数据结构和分页功能的组件,它允许用户以层级方式浏览大量数据,并通过分页来管理这些数据,提高用户体验。在...

    EXTJS应用EXTJS应用EXTJS应用EXTJS应用

    `SQL.TXT`可能包含SQL查询语句或数据库脚本,用于数据库操作,例如创建表、插入数据或执行复杂的查询。开发者可能会用这些语句来初始化或更新应用程序的数据库结构。 `使用帮助.txt`文件通常提供关于如何使用应用...

    extjs资料extjs资料extjs资料

    ExtJS是一种基于JavaScript的开源富客户端框架,专为构建企业级Web应用程序而设计。它提供了丰富的组件库,包括数据绑定,强大的布局管理,以及高度可定制的用户界面元素。这个压缩包包含了一系列关于ExtJS的学习...

    extjs图标大全extjs图标大全extjs图标大全extjs图标大全

    在“包含Windows桌面大多数应用图标”这一点上,我们可以推断这个图标库涵盖了广泛的应用类型,包括文件管理器、网络浏览器、邮件客户端、媒体播放器、办公软件等常见图标。这意味着无论你在ExtJS应用中需要哪种类型...

    extjs流程界面设计器参考_ExtJS工作流设计器_extjs工作流_extjs_

    ExtJS是一种广泛使用的JavaScript库,专门用于构建富客户端的Web应用程序。它提供了丰富的组件和工具,使得开发者可以创建出功能强大、用户界面友好的Web应用。在“extjs流程界面设计器参考”中,我们主要关注的是...

    extjs4.2 分页combo动态条数 源码

    EXTJS 4.2 是一个流行的JavaScript框架,用于构建富客户端Web应用程序。在这个场景中,我们关注的是在EXTJS的Combobox(下拉框)组件中实现分页和动态加载数据的功能。Combobox通常用于展示有限数量的选项,但在大...

    EXTJS4自学手册

    EXTJS4自学手册——EXT数据结构组件(proxy代理类之客户端代理) EXTJS4自学手册——EXT数据结构组件(proxy代理类之服务器端代理) EXTJS4自学手册——EXT数据结构组件(store) 三、Extjs布局 EXTJS4自学手册——...

    extjs 做的一个sqlplus功能的bs客户端.全界面,全源码,丝毫无保留-奉献给大家

    EXTJS是一种基于JavaScript的前端框架,它提供了丰富的组件库,用于构建富客户端应用程序。SQLPLUS则是Oracle数据库系统自带的一个命令行工具,用于执行SQL语句和管理数据库。本项目是用EXTJS实现的一个BS(Browser-...

Global site tag (gtag.js) - Google Analytics