作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 jqxGrid,我需要用一些对象填充它。该对象是完全随机的,某些数据字段可能为空。仅当该数据存在于该对象中时,我才需要显示特定的列。
<小时/>columns: [
{ text: 'Application Id', filtertype: 'input', datafield: 'ApplicationId', cellsrenderer: AppIdRenderer, width: appId },
{ text: 'Name', columntype: 'textbox', filtertype: 'input', datafield: 'ApplicantName', width: Applicant },
{ text: 'Submitted Date', datafield: 'SubmitDate', filtertype: 'date', cellsalign: 'left', cellsformat: 'dd/MM/yyyy', width: ApplDate },
{ text: 'Last Action', datafield: 'LastActionDate', filtertype: 'date', cellsalign: 'left', cellsformat: 'dd/MM/yyyy', width: ApplDate },
{ text: 'University', columntype: 'textbox', filtertype: 'checkedlist', datafield: 'AppType', width: UTYApplied },
{ text: 'Course Applied', columntype: 'textbox', filtertype: 'checkedlist', datafield: 'AppliedCourse', width: ApplCourse },
{ text: 'Latest Comments', columntype: 'textbox', filtertype: 'input', datafield: 'LatestComments', width: ApplCourse },
{ text: 'AppStatus', datafield: 'AppStatus' },
{ text: 'Status', columntype: 'textbox', filtertype: 'checkedlist', datafield: 'Status', width: ApplCourse }
]
<小时/>
例如:仅当数据字段“LatestComments”出现时,我才需要显示列“LatestComments”。
最佳答案
关于如何使用 jqxGrid(本地数据源、远程数据源)等,您写得很少。这对于提出解决方案可能至关重要。
如果我正确理解您的问题,您可能想要隐藏或显示整列,具体取决于每行中的某个数据字段是否完全未定义或至少特别填充了数据。
为此,您需要处理数据并检查这种情况(循环遍历每一行,检查数据字段是否至少有一次包含数据)。然后,在 bindingcomplete
回调中,循环遍历每一列并应用 showcolumn
或 hidecolumn
。
关于jquery - 如何在 jqxGrid jquery 中创建动态列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37345319/
我是一名优秀的程序员,十分优秀!