Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,11 @@
</summary>
<returns>The minimum value for the underlying type</returns>
</member>
<member name="T:Microsoft.FluentUI.AspNetCore.Components.IStringParsableComponent">
<summary>
Defines an interface for components with values that can be parsed from a string.
</summary>
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.IStringParsableComponent.ParsingErrorMessage">
<summary>
Gets or sets the error message to show when the field can not be parsed.
Expand Down
10 changes: 10 additions & 0 deletions examples/Demo/Shared/Pages/List/Listbox/ListboxPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@
</p>
</blockquote>

<blockquote>
<p>
<strong>Note:</strong> Although the component supports the <code>Multiple</code> parameter, the underlying web component does not correctly handle it.<br />
The selected items state will not correspond with the rendered options.<br />
<br />
We strongly advise <strong>not</strong> to use the <code>Multiple</code> parameter with the <code>&lt;FluentListbox&gt;</code> at this time.
</p>
Comment thread
vnbaaij marked this conversation as resolved.
</blockquote>


<h2 id="example">Examples</h2>

<DemoSection Title="Manual" Component="@typeof(ListboxManual)"></DemoSection>
Expand Down
Loading