The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hai,
I am using GridDataBoundGrid and I want to hid certain columns in the grid by dispalying only few,while selecting one row Iwould want to get all its content including the hidden columns .
Is it possible and how,
Thanks and regards,
Hsee
ADAdministrator Syncfusion Team July 20, 2004 11:45 AM UTC
you can hide columns in a GridDataBoundGrid by setting
Me.Grid.Model.Cols.Hidden(someColIndex) = True
You should still be able to access the value using an indexer on the grid even though the column is hidden.
Dim val as Object = Me.Grid(someRow, someColIndex).CellValue