当前位置:网站首页>Fastadmin controls the length of fields in the table
Fastadmin controls the length of fields in the table
2022-07-02 01:18:00 【Flower frozen ice】
Fastadmin In the list display , If something like some fields, such as introduction or remarks , The content is too long , The whole display is a little unfriendly , Here is the limit length , Give me one width( Percentage or ps Will do ), Characters too long display …, Put the mouse on it to display all the contents .
{
field: 'des', title: __('Des'), operate:false,cellStyle:function (value,row,index,field) {
return {
css: {
"min-width": "150px",
"white-space": "nowrap",
"text-overflow": "ellipsis",
"overflow": "hidden",
"max-width":"300px"
}
};
},formatter:function (value,row,index,field) {
var span=document.createElement('span');
span.setAttribute('title',value);
span.innerHTML = value;
return span.outerHTML;
}},```
边栏推荐
- Study note 2 -- definition and value of high-precision map
- Keepalived introduction and installation
- [IVX junior engineer training course 10 papers to get certificates] 03 events and guessing numbers games
- [image enhancement] vascular image enhancement based on frangi filter with matlab code
- Shell Function
- ECS project deployment
- Brief description of grafana of # yyds dry goods inventory # Prometheus
- Sql--- related transactions
- Daily work and study notes
- Exclusive delivery of secret script move disassembly (the first time)
猜你喜欢
DTL dephossite | prediction method of dephosphorylation sites based on Transfer Learning
Day 13 of hcip (relevant contents of BGP agreement)
GL Studio 5 安装与体验
How to compress video size while adding watermark with one click?
工作中非常重要的测试策略,你大概没注意过吧
How does schedulerx help users solve the problem of distributed task scheduling?
Datawhale 社区黑板报(第1期)
SAP ui5 beginner tutorial XXI - trial version of custom formatter of SAP ui5
[eight sorts ①] insert sort (direct insert sort, Hill sort)
ACM教程 - 快速排序(常规 + 尾递归 + 随机基准数)
随机推荐
MySQL application day02
Develop a simple login logic based on SSM
Cookie, session, tooken
SQL injection for Web Security (2)
AIX存储管理之总结篇
Global and Chinese market of avionics systems 2022-2028: Research Report on technology, participants, trends, market size and share
AIX存储管理之逻辑卷的创建及属性的查看和修改
Datawhale 社区黑板报(第1期)
Hcip day 14 (MPLS protocol)
Global and Chinese market of picture archiving and communication system (PACS) 2022-2028: Research Report on technology, participants, trends, market size and share
Recently, three articles in the nature sub Journal of protein and its omics knowledge map have solved the core problems of biology
Global and Chinese markets for context and location-based services 2022-2028: Research Report on technology, participants, trends, market size and share
XMind思维导图
技术大佬准备就绪,话题C位由你决定
浅浅了解Servlet
Han Zhichao: real time risk control practice of eBay based on graph neural network
Daily work and study notes
[eight sorts ①] insert sort (direct insert sort, Hill sort)
UDS bootloader of s32kxxx bootloader
BiLSTM-CRF代码实现