We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using version 8.0.4
HideIcons is not properly hiding the icons i specify:
<MarkdownEditor Value="@markdownValue" ValueChanged="@OnMarkdownValueChanged" ValueHTMLChanged="@OnMarkdownValueHTMLChanged" HideIcons="@(new string[] { "code", "fullscreen", "heading", "image", "quote", "table" })" Placeholder="..." MaxHeight="@(MaxHeight ?? "100px")" SpellChecker="@false" TabSize="4" />
result:
The text was updated successfully, but these errors were encountered:
The name fields provided in the documentation are incorrect. Try prefixing the given names with "mde-tb-". For example:
HideIcons="@(new string[] { "mde-tb-code", "mde-tb-fullscreen", "mde-tb-heading", "mde-tb-image", "mde-tb-quote", "mde-tb-table" })"
Sorry, something went wrong.
I'll investigate this issue Enrico
The name fields provided in the documentation are incorrect. Try prefixing the given names with "mde-tb-". For example: HideIcons="@(new string[] { "mde-tb-code", "mde-tb-fullscreen", "mde-tb-heading", "mde-tb-image", "mde-tb-quote", "mde-tb-table" })"
This worked for me, thanks @Doddzi
erossini
No branches or pull requests
I am using version 8.0.4
HideIcons is not properly hiding the icons i specify:
result:
The text was updated successfully, but these errors were encountered: