I have a kendo grid with inline editing and would like to put the edit and delete button inside a dropdown.
Before code:
columns.Command(command => { command.Edit(); command.Destroy(); }).Width(70);
I came up with the following markup
columns.Bound(x => x.Id).Title(" ").IncludeInMenu(false).ClientTemplate(
@"<div class='btn-group'>
<a role='button' class='k-button k-button-icontext k-grid-edit' href='\\#'><span class='k-icon k-i-edit'></span>Edit</a>
<a class='k-button k-button-icontext dropdown-toggle' data-toggle='dropdown' aria-haspopup='true' aria-expanded='false'>
<span class='caret'></span>
</a>
<ul class='dropdown-menu'>
<li><a role='button' class='k-button k-button-icontext k-grid-delete' href='\\#'><span class='k-icon k-i-close'></span>Delete</a></li>
</ul>
</div>")
.Width(80);
Dear support,
We are using kendo UI for jQuery editor and we have a question about editorTools "forecolor" and "backcolor" from the toolbar.
Could you please tell us if it's possible to display the 2 modes(palette and gradient) together, from our version of kendo : 2019.1.115 ?
Like for example this colorPicker : https://dojo.telerik.com/EWahuGuM
Best Regards,
Hamza.
If "Item Type" = "Credit" then "Amount" = "Percentage" * "Sale Price"
The "Amount value should be calculated, as soon as I change any of the editable field.Hey everybody!
There must be something simple that I am missing.
I currently have a template set up to render through renderMessage() which runs for every message on initialization.
Loosely based on this. Thank you Martin for this one.
https://www.telerik.com/forums/set-date-on-rendermessage-in-kendochat
The issue is that when I hit the send button and it goes into the post() method, this template no longer applies and it seems to reverts back to default.
How do I wire up my template to be used by default on send button click?
Best,
Jeff