Hi,
I want to display the forum like list view using Telerik Kendo ListView and did not find any proper solution. I did not want to use the hierarchical grid or the treelist view since I did not want to display it like a grid. Please let me know if there is any solution which I can try. I am using the below versions.
IDE: Visual Studio 2015 Professional
.Net Framework : 4.6.2
UI for ASP.NET MVC : 2017.3.1018.545
SQL Server : SQL Server 2016
I want something like the below link. Not exactly the same but wanted to reuse list view with hierarchy.
https://social.msdn.microsoft.com/Forums/vstudio/en-US/6df3b1bc-bbd8-493b-aaf2-26cdb9ee36b9/does-anybody-know-how-to-convert-a-ipicturedisp-to-an-outlook-picture?forum=outlookdev
Would like to use kendo validation error tooltips for a cell on a grid. But the grid uses popup editing mode. The cell in question is a clienttemplate with checkbox input.
Is it possible to activate the kendo validation tooltip for a cell even when the grid as a whole uses popup editing mode, or does it have to be incell or inline?
I have 2 Kendo UI Listboxes, I am not able to drag items from Model.PTLUser.RolesToRemove to the other listbox. I dont see any javascript errors in the console. My code currently looks like this.
<div role="application" class="" id="RolesList"> @(Html.Kendo().ListBox() .Name("Model.PTLUser.RolesToRemove") .DataValueField("RoleName") .DataTextField("RoleName") .Draggable(true) .DropSources("Model.PTLUser.RolesToAssign") .ConnectWith("Model.PTLUser.RolesToAssign") .BindTo(Model.RolesAvailable) .Selectable(ListBoxSelectable.Single) ) @(Html.Kendo().ListBox() .Name("Model.PTLUser.RolesToAssign") .DataValueField("RoleName") .DataTextField("RoleName") .Draggable(true) .DropSources("Model.PTLUser.RolesToRemove") .ConnectWith("Model.PTLUser.RolesToRemove") .BindTo(new List<string>()) .Selectable(ListBoxSelectable.Single) ) </div>

I am creating a treeview, loaded from remote hierarchical data, similar to
http://demos.telerik.com/aspnet-mvc/treeview/remote-data-binding
I am trying to understand this line in the controller:
hasChildren = e.Employees1.Any()
I assume that the employee model has a property where it checks for children. Where can I actually look at the model? Can I download all the demos along with the data model?


I have server bound grid and a set message to be displayed when no data exists. Below is my aspx view for the grid:
<% Html.Kendo().Grid(Model.BillingReport) .Name("billing_grid") .Columns(columns => { columns.Bound(c => c.BillDate).Format("{0:M/d/yyyy}"); columns.Bound(c => c.Account); columns.Bound(c => c.BillProgram); columns.Bound(c => c.Total).Format("{0:c}"); }) .NoRecords("No records found.") .Resizable(resizable => resizable.Columns(true)) .DataSource(dataSource => dataSource.Server()) .Render(); %>
On the rendered page, I see the column headers and nothing in the grid. On the browser code, I see:
<tr class="k-no-data"> <td colspan="5"></td></tr>
Why am I not seeing the message?
Hello Kendo UI support team,
We need convert legacy APS.NET Form based project to MVC. In legacy project we used Telerik RadFileExploer control to handle file management. But I did not find equivalent control in Kendo UI. Is there any similar control in Kendo UI?
Thanks in advance!
Should the scheduler be auto generating the RecurrenceId when creating a recurrence exception? When following the example in the Documentation section I am setting things up as it says and everything seems to work except the RecurrenceId. When I create a recurrence exception the RecurrenceId is always set to null.
Here are some pictures with explanations:
Attached File 1: This is a view of the object when I am creating the recurrence exception
Attached File 2: This is a picture of what the scheduler looks like after the initial save. It looks fine and it looks like the recurrence exception is connected to the recurrence.
Attached File 3: This is a picture after the refresh. You can see that now what was supposed to be the recurrence exception is being treated as not associated with the recurrence at all.

Have listbox...
Works fine... chrome, edge... but on IE 11 scrolling does not seem to work... have to use the up/down arrows...
@(Html.Kendo().DropDownList()
.Name("admin_tableName")
.DataTextField("Text")
.DataValueField("Text")
.OptionLabel("- Select -")
.DataSource(source => source
.Custom()
.Transport(transport => transport
.Read(read => read.Action("GetTableNames", "Admin"))
)
)
.HtmlAttributes(new { style = "width: 100%" })
.Events(e => e.Change("admin_tablename_change"))
)