Articles in this section
Category / Section

How to hide content of specific cells in TreeGrid

1 min read

In TreeGrid, user can hide the content of the cells of the column without affecting the data source. It can be achieved by using QueryCellInfo client-side event. Please refer the below code snippets for more details.

ASP

<body>
<form id="Form1" runat="server" onsubmit="return false" style="">
        <ej:TreeGrid runat="server" ID="TreeGridControlEditing" ChildMapping="Children" 
QueryCellInfo="queryCellInfo"> 
        //...
        </ej:TreeGrid>
        <script type="text/javascript">
              function queryCellInfo(args) {
                  if (args.data.Id == 13) {
                      if (args.column.field == "Id" || args.column.field == "Name" ||                           args.column.field == "StartDate" ||                           args.column.field == "EndDate") {
                          args.cellElement.textContent = "DATA HIDDEN";
                      }
                  }
              }
         </script>   </form>
</body>

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied