I'm using Kendo UI, and I need to disable a button after it is clicked.
I'm applying the 'k-state-disabled' class inside the click event.
The button is visually disabled (it's faded out and looks disabled), but when I put the mouse cursor over it, I get the button's hover state, and if I click, I actually get a hit in my click event.
**Button Markup**
Submit
**Script**
$('.submitButton').live('click', function () {
$('.submitButton').addClass("k-state-disabled");
console.log("here");
});
![After clicking the button multiple times, I get this][1]
Is there something else I need to do in order to fully disabled this anchor? I seem to remember disabled buttons working with just this in previous versions of Kendo, but now I'm not so sure...
[1]: http://i.stack.imgur.com/P2c35.png
以上就是anchor tag with k-button styling is still clickable when k-state-disabled is applied的详细内容,更多请关注web前端其它相关文章!