Hi WillieBoykin,
Thank you for contacting Syncfusion support.
We have analyzed the mentioned scenario and suspect that base grid model is not initialized with the your UiGridModel is while initializing your custom UiGridControl. In order to update the grid model, we suggest you to initialize the base while the grid is initialized.
Please refer to the below code,
public class CustomGridControl : GridControl
{
public CustomGridControl(CustomGridModel model)
: base(model) // To override base grid model with the customized grid model.
{
}
}
public class CustomGridModel : GridModel
{
public CustomGridModel ()
: base()
{
}
} |
If still the issue exists, please provide us with simple sample with your customization.
Regards,
Subburaj Pandian V