Other than dependencies that a user/team would have to get a Kendo UI license, are there any issues with starting a opensource project based on asp.net core, but also include a dependency on the kendo ui library?
Hi,
I want to be able to toggle the expand/collapse state of a node but I can't see how to tell what it's current state is.
Basically, when a user clicks on a node, if that node has children and it's collapsed, expand it. If it's expanded, then collapse it.
Seems simple enough, but right now it's over my head.
Any help would be great!
Thanks … Ed
I followed all of the instructions to install Telerik into my existing ASP.NET Core 2.1 application and it all worked fine. The application compiled fine and came up in the browser, but when the Index page loaded the date picker did not work and was just a simple text box. I did not miss any of the steps from what I can see, so I'm not sure why this would not be working.
I'm using Visual Studio 17, and this is an ASP.NET Core 2.1 application.
I'm evaluating Telerik to see if it will be a fit for my needs. The controls look great, but I need to get them working to test this out.
Any help or advice would be greatly appreciated.
I have kendo grid, which has 1000+ records. I want to select row which is present in page 33. I achieve this
....
$scope.grid = $("#grid").data("kendoGrid");
var index = $scope.grid.dataSource.indexOf(rowData);
var page = Math.floor(index / $scope.grid.dataSource.pageSize());
$scope.grid.dataSource.page(++page);
var targetIndex = index - (page * $scope.grid.dataSource.pageSize());
var row = $("#grid").find("tr:eq(" + targetIndex + ")");
$scope.grid.select(row);
$scope.grid.content.scrollTop($(row).position().top);
...
The above code working perfectly. Then I'm trying to apply global search which is filters data, but nothing shown in the user interface.
function applyGlobalFilter(gridData, searchText) {
gridData = $filter('filter')(gridData, searchText);
$scope.grid.dataSource.data(gridData);
}
Thanks in advance
I'm trying to select which tab is active when the screen is loaded Here's the code I'm using but it doesn't work. Neither tab is selected when the tab strip is loaded.
<div class="col-sm-offset-3 col-md-offset-3">
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.TabPosition(TabStripTabPosition.Top)
.Collapsible(true)
.Navigatable(false)
.Animation(animation =>
{
animation.Open(config =>
{
config.Fade(FadeDirection.In);
});
})
.Items(items =>
{
items.Add().Text("Contact").LoadContentFrom("EditContact", "People", new { id = Model.person.Id }).Selected("@Model.tab" == "Contact");
items.Add().Text("Address").LoadContentFrom("EditAddress", "People", new { id = Model.person.Id }).Selected("@Model.tab" == "Address");
})
.Events(e => e.Activate("onActivate"))
)
</div>
What's the syntax for this as this doesn't seem to work?
<editable enabled="true" mode="popup" template="/Features/Shared/EditorTemplates/FileUploadForm.cshtml" />
I am using an editor to save pieces of text in an application. With that editor i have a save and cancel button. When pressing the cancel button it checks for any changes between the editor and the loaded in value (this value is stored in an hidden input, gathered from the database).
When I insert an image using the ImageBrowserController with the editor, it automatically adds the alt="" text to the image tag. In Chrome this tag is always placed at the end of the image tag, however in IE11 it seems that when using the editor, the tag is placed in the front of the image tag. This causes the two values to not be identical. It means that the loaded value has the alt text on the left but the editor the alt text is on the right of the image tag.
Is this a bug or is there something I can do about this?
In summary:
IE11 changes the way the image tag is loaded in the editor compared to Chrome. In Chrome the alt attribute is placed after the source and in IE11 it's placed before the source. When I save a piece of text with an image in Chrome and then open it in IE11 and press Cancel, it detects it as a change, even though I didn't change anything myself.
Hi All,
I'm trying out https://demos.telerik.com/aspnet-mvc/grid/toolbar-template on my razor page
but I'm getting error "Cannot convert lambda expression to type 'string' because it is not a delegate type" when using @<text>
if I change the @<text></text> to "" it works but adding @(Html.Kendo().DropDownList() ..... shows as text only.
toolbar.ClientTemplate(@<
text
>
<
div
class
=
'toolbar'
>
<
label
class
=
'category-label'
for
=
'category'
>Show products by category:</
label
>
</
div
>
</
text
>);
Hi,
How do I put the renderbody function inside a splitter pane?
Thanks ... .Ed