Home Backend Development PHP Tutorial Extjs Ext.data.Store使用有关问题

Extjs Ext.data.Store使用有关问题

Jun 13, 2016 pm 01:50 PM
dep ext quot width

Extjs Ext.data.Store使用问题
大家好,我最近在使用Extjs模板,遇到个问题,想请教大家,我在用Ext.data.Store读取服务器的数据,在前台显示的时候显示不出东西来,这是怎么回事。
以下是我的后台代码:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
    function actionReadAllDep()
    {
        $pageLimit = getPageLimit();
        $erp = new ModelErp();
        $sql = "SELECT * FROM es_dep_pro";
        $dep = $erp->getList($sql,$pageLimit['form'],$pageLimit['to']);
        $result['totalCount'] = count($dep);
        $result['topics'] = $dep;
        require(CFG_PATH_LIB.'util/JSON.php');
        $json = new Services_JSON();
        echo $json->encode($result);
    }

Copy after login


以下是前台代码:
JScript code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
    Ext.onReady(function(){
        var ds = new Ext.data.Store({
            proxy : new Ext.data.HttpProxy({url:'index.php?model=erp&action=ReadAllDep&'}),
            reader: new Ext.data.JsonReader({
                root: 'topics',
                totalProperty: 'totalCount'
            },[
                'DEP_ID','DEP_NAME','UPPER_ID','STATUS'
            ])
        });
        var cm = new Ext.grid.ColumnModel([
            {header:"部门编号",width:80,dataIndex:"DEP_ID"},
            {header:"部门名称",width:100,dataIndex:"DEP_NAME"},
            {header:"上级部门编号",width:80,dataIndex:"UPPER_ID"},
            {header:"部门状态",width:30,dataIndex:"STATUS"}
        ]);
        cm.defaultSortable = true;
        /*var grid = new Ext.grid.GridPanel({
            region:'center',
            loadMask:true,
            store:ds,
            cm:cm,
            stripeRows:true,
            border:true,
            borderStyle:'width:100',
            autoScroll:true
        });*/
        ds.load({params: {start: 0,limit: 20}});
        loadend();
    });

Copy after login


------解决方案--------------------
士大夫
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

An in-depth discussion of the physical storage structure of the Linux ext2 file system An in-depth discussion of the physical storage structure of the Linux ext2 file system Mar 14, 2024 pm 09:06 PM

The Linuxext2 file system is a file system used on most Linux operating systems. It uses an efficient disk storage structure to manage the storage of files and directories. Before we delve into the physical storage structure of the Linuxext2 file system, we first need to understand some basic concepts. In the ext2 file system, data is stored in data blocks (blocks), which are the smallest allocable units in the file system. Each data block has a fixed size, usually 1KB, 2KB or 4

What does the width of html mean? What does the width of html mean? Jun 03, 2021 pm 02:15 PM

In HTML5, width means width. The width attribute defines the width of the element's content area. You can add inner margins, borders, and outer margins outside the content area. You only need to set "element {width: value}" to the element.

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Analyze the physical organization of the Linux ext2 file system Analyze the physical organization of the Linux ext2 file system Mar 15, 2024 am 09:24 AM

The Linuxext2 file system is one of the commonly used file systems in the Linux operating system and has good performance and stability. This article will analyze the physical organization of the ext2 file system in detail and provide some specific code examples to help readers better understand. 1. Overview of the ext2 file system The ext2 file system is the earliest second-generation extended file system on the Linux system. It has made certain improvements in the performance, reliability and stability of the file system. It mainly consists of super block, group scan

What is the difference between ext3 and ext4 in Linux system? What is the difference between ext3 and ext4 in Linux system? Feb 19, 2024 am 11:48 AM

A file system is an organization method for files stored on storage devices such as disks. The Linux system can support a variety of currently popular file systems, including: EXT2, EXT3, EXT4, FAT, FAT32, etc. So what are the differences between ext3 and ext4 in Linux systems? The following is a detailed introduction. What is the difference between ext3 and ext4 in Linux systems? 1. Larger file system and larger files ext3: 16TB file system and maximum 2TB file; ext4: 1EB file system and maximum 16TB file. 2. Unlimited number of subdirectories ext3: 32000 subdirectories; ext4: unlimited number of subdirectories.

What are the methods for expressing width value in css? What are the methods for expressing width value in css? Nov 13, 2023 pm 05:47 PM

Methods include pixel value, percentage, em unit, rem unit, vw/vh unit, auto, fit-content, min-content, max-content. Detailed introduction: 1. Pixel value (px): The pixel value is fixed, and its width remains unchanged no matter how the screen resolution changes. For example: width: 300px; 2. Percent (%): The percentage width is relative to the width of the parent element. For example: width: 50%; 3, em unit, etc.

File system selection and optimization suggestions for building a web server on CentOS File system selection and optimization suggestions for building a web server on CentOS Aug 05, 2023 pm 03:35 PM

Introduction to file system selection and optimization suggestions for building a web server on CentOS: When building a web server, it is extremely important to select an appropriate file system and optimize it. This article will introduce the file systems commonly used when building web servers on CentOS and provide corresponding optimization suggestions. 1. File system selection XFS file system XFS is an advanced, high-performance log file system. It has fast and efficient file system recovery capabilities and excellent I/O operation performance for large-capacity storage. XFS versus large

Detailed explanation of the physical structure of the ext2 file system under Linux Detailed explanation of the physical structure of the ext2 file system under Linux Mar 14, 2024 am 10:03 AM

Detailed explanation of the physical structure of the ext2 file system under Linux. In the Linux system, ext2 is a commonly used file system type. It is a relatively simple and efficient file system. In this article, we will delve into the physical structure of the ext2 file system, including super blocks, group descriptors, inode tables, data blocks, etc., and also provide specific code examples to help readers better understand. 1. Super block (SuperBlock) The super block is one of the most important data structures in the ext2 file system.

See all articles