Telerik Forums
UI for ASP.NET Core Forum
1 answer
144 views

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?

 

Missing User
 answered on 16 Dec 2019
2 answers
215 views

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

 

Ivan Danchev
Telerik team
 answered on 13 Dec 2019
1 answer
72 views

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.

Ivan Danchev
Telerik team
 answered on 12 Dec 2019
6 answers
2.3K+ views

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

Georgi
Telerik team
 answered on 12 Dec 2019
2 answers
172 views

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>

Tom
Top achievements
Rank 1
 answered on 12 Dec 2019
1 answer
381 views

What's the syntax for this as this doesn't seem to work?

 

 <editable enabled="true" mode="popup" template="/Features/Shared/EditorTemplates/FileUploadForm.cshtml" />

Nikolay
Telerik team
 answered on 11 Dec 2019
3 answers
110 views

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.

Veselin Tsvetanov
Telerik team
 answered on 10 Dec 2019
6 answers
120 views
I`m working with your new filter, but I have a problem. When I use EditorTemplateHandler and making dropdown for current column and I persist state and when I load data I lost values from dropdown. For instance if I have dropdown with dataTextField string and dataValueField string, after load my dropdown become input. Is it a normal behavior?
Viktor Tachev
Telerik team
 answered on 10 Dec 2019
3 answers
1.4K+ views

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>);
Petar
Telerik team
 answered on 10 Dec 2019
1 answer
191 views

Hi,

How do I put the renderbody function inside a splitter pane?

Thanks ... .Ed

 

Ivan Danchev
Telerik team
 answered on 10 Dec 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?