我有一个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回调中,遍历每一列并应用showcolumnhidecolumn

07-26 09:30