-
-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
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
Adding a hyperlink or button along with the title in the tabs not working. #31
Comments
Hello @zhenshaav, the title property allows you to insert any kind of HTML. In my case I did: var jkanban = new jKanban({
element: '#my_kanban',
boards: [
{
'id': '_todo',
'title': 'ToDo List<div class="button_new" style="float: right;"><button class="btn-round" type="button"><i class="fa fa-plus"></i></button></div>',
'item': [
// ...
]
}
]
}); |
You won't achieve that without some code. When you click at an item you actually clicking in a DIV. What is your goal by adding a hyperlink on item? |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I want to add a hyperlink or button to the title, so that i can give option to edit tabs. Currently the hyperlink added inside the tabs along with the title doesnt work...
The text was updated successfully, but these errors were encountered: