After creating the CRUD pages in RBS, I would normally set the following for the datagrid page:
AllowColumnResize = true
Look and Feel, Density change Default –> Compact
FilterMode change Advanced –> Simple
PageNumbersCount change 5 –> 10
PagerAlwaysVisible = true
PageSizeOptions = @(new int{10, 20, 50, 100})
Dialog for Add & Edit to Resizable & Draggable
This is time consuming having to go through all the CRUD pages especially if there are a lot of tables. Would be great to be able to select these as part of the selection prior to generating the CRUD pages.
For RadzenTextBox for the Add & Edit pages, I usually set AutoCompleteType="Radzen.Blazor.AutoCompleteType.Off" so that users don’t see autocomplete popups which can be annoying for them
I notice that AutoCompleteType="Radzen.Blazor.AutoCompleteType.Off" gets set on TextBox & Checkbox but not on Numeric. Is there a reason why it’s not set on Numeric?