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
Currently, when we configured an item with text attribute, a <a> tag is created with dropdown-item css class.
<a>
dropdown-item
Could you add a new property cssClass to add some other class on this <a> tag ? This new property could accept a text or function.
cssClass
This feature can solve some others demands like displaying an icon on dropdown item #21.
Before :
{ text: '<i class="mdi mdi-pencil"></i> Rename', click: function () { rename() } }
After :
{ text: 'Rename', cssClass: 'mdi mdi-pencil', click: function () { rename() } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, when we configured an item with text attribute, a
<a>
tag is created withdropdown-item
css class.Could you add a new property
cssClass
to add some other class on this<a>
tag ? This new property could accept a text or function.This feature can solve some others demands like displaying an icon on dropdown item #21.
Before :
After :
The text was updated successfully, but these errors were encountered: