🐛 Bug Report
Setting default values for generci components does not work.
I tried all thinkable approaches:
options.DefaultValues.For<FluentAutocomplete<dynamic, dynamic>().Set(p => p.Width, "100%");
options.DefaultValues.For<FluentAutocomplete<object, object>().Set(p => p.Width, "100%");
options.DefaultValues.For<FluentAutocomplete<string, string>().Set(p => p.Width, "100%");
🤔 Expected Behavior
I expect the default values to be defined at least when I specify the exact same generic combination as in my razor files.
😯 Current Behavior
All default values will be ignores for generic components.
💁 Possible Solution
🔦 Context
I want to use this feature for FluentAutocomplete to always set Width and MaxAutoHeight. Or within FluentDataGrid to always use Table mode.
🐛 Bug Report
Setting default values for generci components does not work.
I tried all thinkable approaches:
🤔 Expected Behavior
I expect the default values to be defined at least when I specify the exact same generic combination as in my razor files.
😯 Current Behavior
All default values will be ignores for generic components.
💁 Possible Solution
🔦 Context
I want to use this feature for
FluentAutocompleteto always setWidthandMaxAutoHeight. Or withinFluentDataGridto always use Table mode.