Hello all,
I used Kendo UI MultiSelect and Grid controls in my MVC project. There is one column called "Actions" with string value ( like "Read" or "Read, Create" or ...) on the Grid. When user click "Edit" command, Kendo MultiSelect control ( It located inside sub folder "EditorTemplates") will appear one that column to let user re-select the actions. The code worked file except failed to populate current values of the "Actions", I tred couples of way but no lucky so far. Can I get someone's Help?
Thanks in advance!
Below are pieces of code:
One of Grid columns:
columns.Bound(p => p.Actions).Width(200).Title("Actions").EditorTemplateName("Actions");
Multiple selection Control in "Actions.cshtml" view which inside "EditorTemplates" folder
@(
Html.Kendo().MultiSelectFor(m => m)
.Name("Actions")
.DataTextField("Text")
.DataValueField("Value")
.AutoClose(false)
.ClearButton(false)
.BindTo(new List<SelectListItem>() {
new SelectListItem() {Text = "Create", Value = "1" },
new SelectListItem() {Text = "Read", Value = "2" },
new SelectListItem() {Text = "Update", Value = "3" },
new SelectListItem() {Text = "Delete", Value = "4" } })
)

Hi, I use the "general discussions" section, as there's no FilterMenu section, and I think that this component is only used inside the grid. But, because we need to filter our datasource for the grid, and others containers, we decided to use the kendoFilterMenu directly outside of the grid.
I see that there's an operator named "isnullorempty".
I think it's a new one, because I don't see in the dataSource doc.
Nothing in the and in the grid doc too.
The only place I read about it is in the filterMenu doc
We'll certainly use it to filter text, to manage these cases: empty string, null, or undefined.
But, undefined are not returned.
https://dojo.telerik.com/@foxontherock/UMiQoGIJ
When I filter the field "text", with "Has no value", I get 1001 and 1002 in return, not 1003.
I don't think any combination of filters can return "undefined" value?
Can we edit the original filter method to make it apply the filter to undefined also?
Or should we absolutely need to create a custom filter function?
Thank you

Hi,
I am new to gantt chart. I am trying to integrate gantt chart into php application. To integrate this I have done the changes in demo code like below
$result = new DataSourceResult('mysql:host=localhost;dbname=sample;', 'root', '', array(PDO::ATTR_PERSISTENT => true)); By changing I can see the data in
console but it is not displaying in UI.Can any one help me in this

When downloading the pdf from the viewer, the file name is showing as Document.pdf. Is there anyway to customize that?
Thanks
Peter
@(Html.Kendo().PDFViewer()
.Name("pdfviewer")
.PdfjsProcessing(config => config.File(file => file.Data(Model.PdfInformation.PDFBase64)))
.Height(1200)
)
Apologies as this is a beginner question.
I have been trying to get uploads working, such as this one:
https://demos.telerik.com/kendo-ui/upload/async
But it does not work on my server, presumably because I am not running the Sample Service code.
I am not sure where to place the code from the "Sample Service" (which I know needs to be modified).
Where does this code get set up? Is it run as the Action of the form, or do I need it running on the server?
Thanks.
Hi All,
I just statrt using Kendo UI. We going to start new project. Before that i want to know one thing like is it possible minimize grid data in one container
For example. I had two menu . when i click first menu it will populate with data. When i click second menu , First grid will minimize in container not closing and second menu grid data will populate. When i click minimized grid it will populate then second menu will minimize. Is there any functionality available kendo grid

After i updated my kendo-ui library from version "2019.2.517" to "2019.2.605" i am getting the issue "Cannot read property 'getTimezoneOffset' of null". This is only happening in timeline views, other views are working fine.
here is how i have configured the model section in datasource
let me: CalendarComponent = this;
model: {
id: "eventId",
fields: {
eventId: { from: "eventId", type: "string" },
start: { type: "Date", from: me.eventMapping.start + "" },
end: { type: "Date", from: me.eventMapping.end + (me.eventMapping.start !== me.eventMapping.end ? "" : "end") },
isAllDay: { type: "boolean", from: "allday" }
}
}
i have not done any other changes just updated the kendo-ui version.

Hi,
sorry if I am posting question that is maybe answered somewhere else, but I searched and didn't find anything.
I know it is possible to use WebSocket as dataSource on grid as shown on one of your examples, but wanted to check if it's possible to use web socket as DS on gantt and if yes, will it behave the same way as grid in terms of updates etc.
Thank you
[Resolved]
The SSL certificate on the Kendo CDN service(kendo.cdn.telerik.com) has expired. We are currently working on that. Any further information on the development will be posted in this thread.
Temporary you can use this https://da7xgjtj801h2.cloudfront.net/ instead of https://kendo.cdn.telerik.com e.g:
** The issue is now fixed. Please, accept our apology for the inconvenience caused!
*** A status page, where you can subscribe for notifications in case of future incidents is now available.
