source: trunk/web/addons/job_monarch/lib/extjs/examples/remoteload/App.js @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 361 bytes
Line 
1/*
2 * Ext JS Library 2.2.1
3 * Copyright(c) 2006-2009, Ext JS, LLC.
4 * licensing@extjs.com
5 *
6 * http://extjs.com/license
7 */
8
9Ext.onReady(function(){
10        new App.EmployeeStore({
11                storeId: 'employeeStore',
12                url: 'loadStore.php'
13        });
14        Ext.ux.ComponentLoader.load({
15                url: 'sampleApp.php',
16                params: {
17                        testing: 'Testing params'
18                }
19        });
20});
Note: See TracBrowser for help on using the repository browser.