Hello,
I want to add the word I wrote in the cell to the "list of validation" if it is not in the current list.
change listener code
I can capture the data I entered in the cell, but I could not add this word to the current validation list. how can I do it ?
My goal is that if the added word is not in the validation list, it will be added, and if there is, it will not repeat the data. in this way, it is always to increase the list and to be able to make a selection from the existing ones.
I have a filter on a datasource which in return updates a grid. The following are the code to filter and its' template handler.
The problem with this is that, I can load the categories at first when I'm creating the filters. But when I save and reload the filter from local storage, the category dropdown does not load. Please help me with this. It loads up only on a fresh filter.
Thanks in advance.
@(Html.Kendo().Filter<Lovely>()
.Name("OrgFilter")
.ApplyButton(true)
.ExpressionPreview(true)
.DataSource("DataSource")
.Fields(f =>
{
f.Add(p=>p.OrgName).Label("Organization");
f.Add(p=>p.CategoryId).Label("Category").EditorTemplateHandler("CategoryDropdown");
f.Add(p=>p.AsAtDate).Label("As At Date");
}))
<script>
function CategoryDropdown(container, options) {
$('<input data-bind="value: value" name="' + options.field + '"/>')
.appendTo(container)
.kendoDropDownList({
dataTextField: "CategoryId",
dataValueField: "CategoryId",
dataSource: @Json.Serialize(ViewData["Catogories"])
});
}
</script>
Problem I'm having is first column with commands does not sort. Is this not supported?
$("#statusGrid").kendoGrid({
hello,
I want to access the spreadshet object in Angular, export and import data.
Example
(A completely imaginary example. I don't know how.)
how can I do it ?
thanks in advance
Hello,
I am working with application where I have thousands of images to load on ImageBrowser of Kendo Editor.
ImageBrowser is getting stuck as having too many images to load, Can we have any option to add pagination or lazy loading in ImageBrowser?
So, I can load only 20 images at a time and other based on request.
Please note that I am fetching images from controller method which returns list of FileBrowserEntry as below.
Thanks,
Trusha
Hi Team,
I would like to fire a validation post drag but pre-drop, this should allow me to cancel the drop and show a message to enduser explaining the cause.
the drop event only allows to modify the rendered alert dialog but it doesnt allow me to cancel the event altogether.
any help is appriciated.
Regards,
Ashutosh
Hi,
I'm not sure if the issue I have is related to kendo ui, but seeing an issue where code I run on my local computer on central time works fine, but when I deploy to the server (eastern time), some of my dates are shifting in the Scheduler control when I iterate through it.
I'm using the kendo.parseDate function on start/end dates
return kendo.parseDate(kendo.toString(input, 'd')).toLocaleDateString("en-US");
That works fine locally, but deployed to the server shifts an hour, which then saves the wrong date in my database.
Is there a timezone saved anywhere in the configs for developer machine that might be getting pushed to server? Switching my computer timezone to eastern and then deploying seems to work fine.
Thanks
Hi,
I was researching available control in Kendo to achieve my requirements it seems that multi-select control is what I need. but I am unsure how i do the templating for the control. my markup for the dropdown is
<select id="users">
<option value="1" data-email="abc@email.com">User 1</option>
<option value="2" data-email="12@email.com">User 2</option>
<option value="3" data-email="adc@email.com">User 3</option>
<option value="4" data-email="anmf@email.com">User 4</option>
</select>
what I wanted to achieve is when the user is selecting the option to show User 1 - abc@email.com. then upon selected, the tag to show User 1.
I understand that multi-column combo box is able to achieve this but i need to be able to select multiple options. I also prefer to render the control via HTML way instead of using json data source
Hi,
I am trying to use Gantt widget with Drawer located at the right side.
For some reason, when I position drawer to the right, even with mini mode it is always outside of the screen (horizontal scroll appears) - if i expand drawer, it basically expands it to the right, and remains outside screen, horizontal scroll just expands area.
When drawer is positioned on the left it works normally (pushes gantt for width of drawer).
Behavior can be observed in following Dojo:
https://dojo.telerik.com/EdIQaXeY
Thank you very much
Regards
Vedad