michaelcsikos
michaelcsikos
It looks like it's not possible to declare a function in a base `DbContext` because the `namespaceName` passed to `[DbFunction("DbContextClassName", "FunctionName"]` needs to be the name of the subclass. If...
`HasFeedback` error icon moves down when the custom `Text` under the edit control appears, and the error icons spins:  Version 0.1.10 ```html @EditControl @Property.ErrorText @Property.WarningText @Property.InformationText ```
The standard validation error messages such as `[Required]` are proper sentences ending with a `.` and I think this is good practice. `Csla.Blazor.PropertyInfo` assumes error messages won't end with a...
Any control that is data bound to `"Visible"` gets broken when the `DockPane` is dragged out, if the control was not visible when the `DockPane` was dragged. This is probably...
In Visual Studio, when a docked pane is dragged out, the current size of the pane is maintained. I believe this should be the default behaviour. I think this only...
Until the `Column` filter is fixed, I am trying to use either `DateTime.MinValue` or `DateTime.MaxValue` instead of `null` with `Column`. The filter will not accept a year of 0001 or...
For something like a `DateCreated` or `DateUpdated` field we often show just the date component in a `Table`. The built-in filter always wants a time selected as well. What we...
`Column` still doesn't work for me with the built-in filters: ``` System.ArgumentException: Instance property 'Value' is not defined for type 'System.DateTime' (Parameter 'propertyName') at System.Linq.Expressions.Expression.Property(Expression expression, String propertyName) at AntDesign.Filters.DateFieldFilterType.GetFilterExpression(TableFilterCompareOperator...
Inside a `Drawer` I have several `Select` components which are bound to a `ViewModel` object. When the values are changed in the bound `ViewModel` the `Select` components are not refreshing...