I have a map that has a concentration of markers on it, and the tooltips run together and sometimes don't disappear on their own. Is there a way to capture the tooltip event and hide all other tooltips when a new one is shown?
Thanks!
I want to either throw a popup saying "You are not the event owner!" or get rid of the delete 'x' icon altogether if a user is not the owner of the event and tries to delete it. Right now, I have an if statement wrapping the content of my delete operation in my scheduler dataSource, so if they are not the user, it does not go in and delete the event in the Database and pops open the window saying they can't do that... However, kendo goes ahead and removes the event from the calendar anyway.......... If you refresh, the event comes back because it wasn't deleted from database.
How do I prevent kendo from removing an event from the calendar if the delete key was pressed while the user was not the event owner? Or how can I hide the delete option from any user that is not the event owner?
Hi,
I am trying to install a multi select editor in my grid. I am following this tutorial: http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/Editing/use-multiselect-as-custom-editor
I changed the implementation so that the widget takes and gives a string of values separated by a comma, rather than an array of strings. This is because the data of the column needing the multi-select editor comes in the form of a comma-separated list of 'Codes' that I then have to map to a human-friendly string representation to use in the muliselect widget
Now I have a bug where, if I type something into the input box, ie: "Rea", and leave the cell without selecting a value, and then try to edit another row, the editor won't clear out my previous input. The input field is blank, but behaves as if the previous "Rea" is still present.
How do i clear out the editor's value each time?
In the demo at http://demos.telerik.com/aspnet-mvc/grid/filter-row, you can see that the Ship Name column filter defaults to Contains. However, if you type in the search box, a dropdown of results shows but it is using the filter Starts With. If I hit Enter, the column will be filtered by Contains. However, the dropdown is confusing and wrong.
Is there a way to get the dropdown to use the specified filter rather than always being Starts With? If not, what's the best way to stop the dropdown from showing since it's confusing and wrong.
I attached 2 screenshots showing what I mean.
Hi, I have a spreadsheet where the first row is a header row. I have some text inside the header row that is hidden, because each cell in the header row has an autofilter button (small grey box with a black down arrow) hiding part of the text. Is there anything I can do about this?
Thanks
Marc
Hi,
In our application, we have one ("ShowDecimal") outside of the grid.
I want once the checkbox is checked, the data of grid column ("ElectricityBill") will be displayed in decimal format. If it's not checked it would not display in decimal format.
I can format the grid column like below way ,
{ field: "ElectricityBill", title: "Electricity Bill", template: "#=kendo.toString(ElectricityBill, 'n2') #" },
But, , how I can apply the "ShowDecimal" checked value in template syntax,
I have tried with following way but none of the options worked,
{ field: "ElectricityBill", title: "Electricity Bill", template: "#= $('ShowDecimal').checked?kendo.toString(ElectricityBill, 'n2'): kendo.toString(ElectricityBill, 'n0')#" },
I have also tried to call one javascript function but I got the error like "Method not found".
Please help.
Regards,
Ujjwal
I want to reduce the input height of Datepicker and already done that by following the link below. But in Chrome, it has a grey shadow under the input and calendar icon. How to adjust css to avoid that? Thanks.
http://www.telerik.com/forums/reduce-height-of-calender-image-in-datepicker
k-i-calendar {
width: 10px;
height: 10px;
background: red;
margin: 0 3px;
}
.k-picker-wrap .k-input {
height: 1.4em;
line-height: 1.4em;
}
.k-picker-wrap .k-select {
min-height: 1.29em;
line-height: 1.29em;
padding-top: 2px;
}