So I'm using 2016.1.412 Telerik controls. MVC Grid UI.
I've followed this (http://www.telerik.com/support/code-library/checkbox-column-and-incell-editing) in order to get one of my boolean? columns to only show a checkbox and allow single click changes. It works if I very carefully click on the check box. If I click (within the cell) but next to the check box I get the drop list with the values "true, false, not set". How do I get rid of the drop list?
1.columns.Bound(p => p.SendTo).Template(@<text></text>).ClientTemplate("<input type='checkbox' #= SendTo ? checked='checked':'' # class='sendtochkbx'/>")2. .Title(GridColumns.SendToPorzio)3. .Filterable(true)4. .HtmlAttributes(new { style = "text-align: center;" })5. .Sortable(false)6. .Width(150)7. .Locked(true)8. .HeaderTemplate("Send To Porzio <input type='checkbox' id='masterCheckBox' onclick='checkAll(this)'/> ");
1.$("#SpendGrid").on('click',2. '.sendtochkbx',3. function () {4. var checked = $(this).is(':checked');5. var dataItem = grid.dataItem($(this).closest('tr')); //grid is defined earlier in code block6. dataItem.set('SendTo', checked);7. });
How can I style my web application to have a consistent look and feel?
Most places I used the kendo controls (Kendo helpers) however there are some places in my application where I've had to use the standard html helpers or just the regular markup.
In those cases I would the appearance of the Kendo style. (Checkboxes, textboxes, etc).
How can I accomplish this?

Hi,
I have a where i need to display data and have a button in each row, on click of the button need to toggle the record with selected property as 0 or 1.
I have used a custom command as i do not need to edit the records. and have used a click on the command, below is the code in the javascript method called in the click. But this makes the row editable and then updates the record but there is no post done to the controller, i have set the Update and Create event both. Please can you help and let me know if this is the current way of doing it.
columns.Command(command =>{ command.Custom("Set").Click("onSetActive").HtmlAttributes(new { @className = "k-icon k-update", @title = "Set" }); command.Custom("Unset").Click("onUnsetActive").HtmlAttributes(new { @className = "k-icon k-cancel", @title = "Unset" });}).Width(145);......
function onSetActive(e){ e.preventDefault(); var dataItem = this.dataItem($(e.currentTarget).closest("tr")); var row = $(e.currentTarget).closest("tr"); var grid = $("#Grid").data("kendoGrid"); grid.editRow(row); dataItem.Selected = 1; setTimeout(function () { grid.saveRow(); }); }Hi, is it posible to have
@(Html.Kendo().DatePickerFor(model => model.BeginDate)
with a masked input?
I want to have the option to write the date but with a mask like 00/00/0000
Thanks

Is there any information on using the Scheduler with the Microsoft Exchange Web Services API?
It seems like it would be a good fit to use calendar information from Exchange Services.
Hi, I would like to scrolling a Kendo UI MVC Grid vertically but not horizontally.
.Scrollable(scroll => scroll.Height(80).Enabled(true)) make it scrolls vertically and horizontally.
Hi,
I'm using kendo ui scheduller custom editor template.
How can I change the popup title from defaut (event) to (My Task Name) ?
See attached file
Best regards

Hi, is it posible to have
(Html.Kendo().DatePickerFor(model => model.BeginDate)
with a masked input?
I want to have the option to write the date but with a mask like 00/00/0000
Thanks
