Hello. Is there a way to have a column menu only in one column ? I tried doing:
grid.thead.find("[data-field=bar]>.k-header-column-menu").remove();
Hello,
I have a grid with a search box like the following:
"Label" column contains a text so there are no any problem to filter grid with by this column. "statusId" column contains a dictionary element text, related to the identifier, kept in the statusId field of the model. So, when have "1" in the model, I see "Status1" in the grid cell
How could I filter grid by dictionary element text (so "2" in the filter box will show me rows, having "Status2" in the statusId column, and "Item2" in the label column?
Hi,
Is it possible to style the text (font-size, color, etc.) of the tooltips appearing above the markers in a "marker"-type layer?
thanks,
Arno

Hi,
Please let me know the possibility of the scenario. OnLoad event of map I have to change the background color of the countries. List of countries in one color and another list in another color.
For Example:India, Pakistan and Bangladesh in green background color and USA, France and England in blue background color.
Can someone let me know the possibility of this in Kendo UI Map and help us to achieve it.
Thanks & Regards,
Balaji
I am currently using WebAPI and KendoUI (drop down in this example). When I need to the object to the API I grab the object out of the data source. To get the selected item I use:
var ​dataItem= $("#dropDown").data("kendoDropDownList").dataItem();
Then to make the object valid I have to remove kendo's ID like so:
delete dataItem.$id
After this I can JSON.stringify the object to pass to the API via ajax:
$.ajax({
type: "PUT",
url: BASE + "Api/MyController",
data: JSON.stringify(dataItem),
contentType: "application/json",
success: function () {
alert("Success");
},
error: function (result) {
alert("failed");
}
});​
Is this bad practice? Is there a better way of getting the object from the data source instead of deleting kendoui's $id every time?
Hello,
I was wondering if there is a way to bind a click event within the custom editor template? I tried doing it the conventional way, where the click event triggers a function within my viewmodel. However, when I click on the button (which exists inside the template), I get this error message:
Uncaught TypeError: ((b.event.special[i.origType] || (intermediate value)).handle || i.handler).apply is not a function.
Please advise.

I have a Kendo UI application flow where I don't want the user to be able to step back into a particular set of views (ie, a couple of 'create' views that lead to the 'completed record' view - the user should not re-access those specific create views). This is for a mobile app if that makes a difference.
I know that Kendo can use window.history features to some degree, but it looks like they have only implemented pushState (http://docs.telerik.com/kendo-ui/api/javascript/router#configuration-pushState), but I believe I would need the replaceState method.
Is there a way to take some manual control temporarily without breaking off from the back stack/backbutton widget?
Hi,
I'm very new to Kendo UI for ASP.NET MVC and I'm facing the first issue.
I have a Grid with editable Popup Editor (Template). Now I want to have a field (let's say CreatedAt timestamp) to show in the popup but only readonly. I've been searching the web for hours for a possible solution and only found the following:
<span data-bind="text:CreatedAt"></span>
That means the field is shown in client side only. How do I change the date format?
If I use default HtmlHelpers like DisplayFor or ValueFor then nothing is displayed.
Is this the only possibility to display readonly fields in the editable popup?
Thanks
Sven