search
HomeWeb Front-endJS Tutorialextjs render usage introduction_extjs

Copy code The code is as follows:

var cm = new Ext.grid.ColumnModel(
[
new Ext.grid.RowNumberer({ header: "", width: 20, align: 'center' }),
{ header: '', align: 'center', dataIndex: 'AccountAndRoseID', width: 50, sortable: true, hidden: true },
{ header: '', align: 'center', dataIndex: 'UserAccountId', width: 50, sortable: true, hidden: true },
{ header : 'Account', align: 'center', dataIndex: 'UserAccountName', width: 200, sortable: true },
{ header: 'Role name', align: 'center', dataIndex: 'UserRoleName', width : 200, sortable: true },
{ header: 'status', align: 'center', dataIndex: 'UserAccountStateId', width: 200, sortable: true, hidden: true, renderer: function() }
]

Renderer can format the data displayed in this column or display the final data according to your customized script (this is my current understanding)
Look at renderer first: function( ) in the parameters
Copy the code The code is as follows:

renderer:function(value, cellmeta, record, rowIndex, columnIndex, store){

}

1.value is the value of the current cell
2.cellmeta stores the cellId cell id, id I don’t know what it does, it seems to be the column number, and the css is the css style of this cell.
3.record is all the data in this row. Whatever you want, record.data["id"] can be obtained in this way.
4. rowIndex is the row number, which does not mean counting from the beginning, but the result after paging.
5.columnIndex column number is too simple.
6.store, this is awesome. In fact, this is the ds passed when you construct the table. That is to say, you can call all the data in the table at will. Alas, it is so awesome.

I found a blog post online, which is very good and intuitive:
Copy the code The code is as follows:




03.grid










Statement
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
vue3怎么通过render函数实现菜单下拉框vue3怎么通过render函数实现菜单下拉框May 10, 2023 pm 04:28 PM

技术方案先写一个下拉框组件首先,我们先写一个组件,用来展示下拉框内容。组件名称起为:Select.vue福利商城Saas平台活动定制渲染组件我们要将这个组件渲染在网页上,操作应该是这样的:当鼠标移动到产品服务时,将下拉框组件作为一个组件实例渲染在页面的合适位置。vue3中,渲染一个Vonde,核心逻辑如下:import{createVNode,h,render,VNode}from'vue'importcomponentfrom"./component.

Mpeppe (MPEPE) Coin: A New Contender in the Cryptocurrency Market Attracting Investors from Render (RNDR) and Internet Computer (ICP)Mpeppe (MPEPE) Coin: A New Contender in the Cryptocurrency Market Attracting Investors from Render (RNDR) and Internet Computer (ICP)Sep 03, 2024 pm 02:03 PM

The world of cryptocurrencies is always in flux, with new tokens capturing the attention of seasoned investors looking for the next big opportunity.

render是渲染的意思吗render是渲染的意思吗Feb 02, 2023 pm 02:52 PM

render是渲染的意思,是一种绘图术语;渲染是CG的最后一道工序,也是最终使图像符合的3D场景的阶段;渲染英文为Render,也有人会把它称为着色,但一般把Shade称为着色,把Render称为渲染。

HMD Slate Tab 5G leakes as mid-range tablet with Snapdragon 7s Gen 2, 10.6-inch display and Lumia designHMD Slate Tab 5G leakes as mid-range tablet with Snapdragon 7s Gen 2, 10.6-inch display and Lumia designJun 18, 2024 pm 05:46 PM

With the Skyline, HMD Global is set to unveil a mid-range smartphone in the style of the Nokia Lumia 920 on July 10. According to the latest information from the leaker @smashx_60, the Lumia design will soon also be used for a tablet, which will be c

如何使用PHP和ExtJS实现强大Web应用功能如何使用PHP和ExtJS实现强大Web应用功能Jun 25, 2023 am 11:40 AM

随着Web应用的不断发展和普及,越来越多的企业和个人开始使用PHP和ExtJS来构建功能强大的Web应用。PHP作为一种流行的服务器端脚本语言,具有良好的跨平台性和易于学习的特点,而ExtJS则是一种流行的前端框架,可以帮助开发人员快速构建交互式Web应用界面。本文将介绍如何使用PHP和ExtJS实现强大Web应用功能。建立PHP和MySQL数据库连接在使用

Render币值得长期持有吗?Render币值得投资吗?Render币值得长期持有吗?Render币值得投资吗?Mar 06, 2024 am 08:31 AM

Render币:值得长期持有的投资机会Render币是基于以太坊区块链的加密货币,专为支付去中心化渲染网络Render上的渲染服务而设计。其目标是应对传统渲染解决方案的高成本和低效率,为艺术家和创作者提供经济实惠且便捷的渲染选择。Render币的优势去中心化:Render币基于以太坊区块链,具有去中心化的特性,避免了中心化渲染服务商的单点故障和高昂费用。高效率:Render币利用分布式渲染技术,将渲染任务分配给全球各地的闲置GPU,大幅提高渲染效率。低成本:Render币通过消除中间商,降低了渲

DTX Exchange (DTX) – A New Era in Online TradingDTX Exchange (DTX) – A New Era in Online TradingAug 12, 2024 am 12:24 AM

People who buy big-name crypto coins like Render (RNDR), Mantle (MNT) and Sei (SEI) are now putting money into DTX Exchange (DTX).

Vue 中使用 render 函数实现组件渲染的技巧及最佳实践Vue 中使用 render 函数实现组件渲染的技巧及最佳实践Jun 25, 2023 am 10:02 AM

Vue.js作为一款流行的JavaScript框架,为开发人员提供了许多有用的功能。其中一个最重要的功能是Vue.js的组件系统。Vue.js允许我们使用原生语法编写组件,即HTML,CSS和JavaScript。这种语法非常优美和简洁,但在一些情况下,它可能并不足够灵活。在这些情况下,使用渲染函数可以帮助我们更好地控制组件的输出。渲染函数不是新的概念,它在

See all articles

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

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!