Hi Sinha,
Thanks for contacting Syncfusion Support.
If allowEditing is set as false for a particular column, that column will be read only and the control will be in disable state while editing.
If you meant the invisible state as opacity of the disable cell, set “opacity” CSS for the read only column to change the appearance of disable cell. Please refer to the code example.
<style>
.e-grid .e-disable#GridCustomerID{
opacity:1
}
</style>
@(Html.EJ().Grid<OrdersView>("Grid")
. . .
.Columns(col =>
{
. . .
col.Field("CustomerID").AllowEditing(false).HeaderText("Customer ID").Width(90).Add();
. . .
})
)
|
Regards,
Saravanan A.