Hey,
I have this column definition:
<GridColumn Field="@nameof(MDefaultText.GroupName)" HeaderText="Gruppe" AllowEditing="false"></GridColumn>
And this edit settings:
<GridEventsRowUpdated="UpdateHandler"TValue="MDefaultText"></GridEvents>
If I now open the edit dialog the property input is readonly, this is correct.
But if I add this grouping settings:
<GridGroupSettingsColumns="@([nameof(MDefaultText.GroupName)])"></GridGroupSettings>
then the property editor is not readonly anymore.