Telerik Forums
UI for ASP.NET Core Forum
2 answers
117 views

Hi All

Normally use Telerik with my Xamarin or WPF project, but now have been asked to do a Web front end, which is no problem. I am try to brand the site to my customers own colours etc, so a bit of CSS is required.

While, I'm getting there changing the background, hover colours etc, i'm struggling to find some the the items required for the grid control and a few others.

Is there a definative list of CSS for the Telerik controls e.g k-header is the grid header etc? If not what tools do you guys use for CSS discovery and branding?

Any help appreciated.

 

Thanks

Andy

Nikolay
Telerik team
 answered on 14 Aug 2019
3 answers
144 views

Hi,
I am having an issue with the ASP.Net Core DropdownList with IE 11.  I have done a search and found a few suggested fixes, none seem to resolve my issue.

The scenario is that I have one dropdownlist that on its change event is to cause another dropdownlist to populate with related data.  It is a parent (Category) to child (Subcategory) relationship. 

The issue is that on the change event of the parent dropdownlist the child is not being refresh as expected.  If any new subcategories have been added since the last time the browser was opened, they do not show.  Sometimes even closing the browser and reopening it does not refresh the data.  I believe it is a caching issue related to IE as it works fine in Chrome.  I have followed the suggested fixes below.  They do not resolve my issue in a satisfactory way.

Solution one suggests using the inherit cascading functionality of the dropdownlist.  This does not work. In the code sample you will see that I am using a function within the .Data() to pass the parent category id.  I cannot seem to get that to work with passing the antiforgerytoken as well. 

https://www.telerik.com/forums/dropdownlist-datasource-read-and-refresh-the-parameters-

Solution two suggests to add “.Type(HttpVerbs.Post)” to the read action of the dropdownlists.  This does work if I remove our AntiForgeryToken protection.  The problem with this solution is that we cannot remove the antiforgerytoken for any post action even if the result is not a change to data.

https://stackoverflow.com/questions/26612828/issue-updating-kendo-dropdownlist-with-internet-explorer

Is there any other solution to my issue?  IE 11 is the official browser the company supports and as such I need it to work with IE 11.

In this first example I am using the cascading functionality with trying to pass the antiforgerytoken within the getCategoryId function.

function onCategoryChange() {       
    $("#SubCategoryId").data("kendoDropDownList").dataSource.read();
}
 
function getCategoryId() {
    var categoryId = $("#CategoryId").data("kendoDropDownList").value();       
    var id = categoryId;
    dict = new Object();
    dict['parentId'] = id;
    return { args: dict, "__RequestVerificationToken": $('input[name=__RequestVerificationToken]').val() };
}

 

@(Html.Kendo().DropDownListFor(m => m.CategoryId)
    .HtmlAttributes(new { @class = "input-category" })
    .DataTextField("Description")
    .DataValueField("ServiceCategoryId")
    .Events(e => e.Change("onCategoryChange"))
    .DataSource(source => {
        source.Read(read => {
            read.Action("ActionSelectList", "ServiceRequest", new { listModel = "category" }).Type(HttpVerbs.Post).Data("sendAntiForgery");
            });
        })                  
)
 
@(Html.Kendo().DropDownListFor(m => m.SubCategoryId)
    .HtmlAttributes(new { @class = "input-category" })
    .ValuePrimitive(true)
    .DataTextField("Description")
    .DataValueField("ServiceCategoryId")
    .NoDataTemplate("NO SUBCATEGORY")
    .DataSource(source => {
        source.ServerFiltering(true);
        source.Read(read => {
            read.Action("ActionSelectList", "ServiceRequest", new { listModel = "subcategory" }).Data("getCategoryId");
        });
    })
    .Enable(false)
    .AutoBind(false)
    .CascadeFrom("CategoryId")
)

 

In this second example is am using the “.Type(HttpVerbs.Post)" solution with antiforgerytoken protection turned off.  The onCategoryChange function and the parent categoryId dropdownlist are the same as the first.  This works but is not a real solution since I have to turn of antiforgerytoken.

function getCategoryId() {
    var categoryId = $("#CategoryId").data("kendoDropDownList").value();       
    var id = categoryId;
    dict = new Object();
    dict['parentId'] = id;
    return { args: dict };
}

 

@(Html.Kendo().DropDownListFor(m => m.SubCategoryId)
    .HtmlAttributes(new { @class = "input-category" })
    .ValuePrimitive(true)
    .DataTextField("Description")
    .DataValueField("ServiceCategoryId")
    .NoDataTemplate("NO SUBCATEGORY")
    .DataSource(source =>
    {
        source.ServerFiltering(true);
        source.Read(read =>
        {
                read.Action("ActionSelectList", "ServiceRequest", new { listModel = "subcategory" }).Data("getCategoryId").Type(HttpVerbs.Post);
        });
    })
    .AutoBind(false)
)

 

Thank you for any help you can provide.

Rick

 

 

Rick
Top achievements
Rank 1
 answered on 13 Aug 2019
3 answers
729 views

what is the difference between the NuGet package Kendo.for.AspNet.Core vs. Telerik.UI.for.AspNet.Core ?
Under what situation to use one versus the other ?

I downloaded both from Visual Studio NuGet into my project then noticed I get a compilation warning error about the PackageReference and Version.

Nikolay
Telerik team
 answered on 12 Aug 2019
1 answer
150 views

Hi Telerik experts,

 

Could you educate me add a logo picture on the top menu, like this picture showed.  Thanks a lot!

 

 

Ivan Danchev
Telerik team
 answered on 09 Aug 2019
3 answers
727 views

Hi, looking for information on how to integrate spell checking in the asp.net core editor component. Can anyone provide an example.  I see radspell in MVC but not core.

Thanks in advance, Matt

Marin Bratanov
Telerik team
 answered on 09 Aug 2019
1 answer
157 views
     Can I have a vertical toolbar?
Aleksandar
Telerik team
 answered on 09 Aug 2019
1 answer
77 views

I've got a webapp already running fine and I've been thinking about adding scheduler.  What would be the easiest way to implement it?  My data will be on a sql database.

 

Thanks in advance

Veselin Tsvetanov
Telerik team
 answered on 09 Aug 2019
1 answer
205 views
How do I put a spacer or a separator between entries in the PanelBar?  The Items in my PanelBar have some grouping that I'd like to show visually.  Old-school Menus used to let the developer put a dash (-) in the entry in order to visually show a separator.
Veselin Tsvetanov
Telerik team
 answered on 09 Aug 2019
1 answer
104 views

Hi,

 

Is there a way to set color on the value for some fields according to some rule?  yes/no or >0, <0.

Marin Bratanov
Telerik team
 answered on 08 Aug 2019
1 answer
230 views

Hi,

 

I want to get the filters from the grid to perform server side filtering. Is this possible with your grid and RazorPages?

I want to show a lot of logmessages, that have to be filtered on the database, because i would load to many records.

 

Best Regards

Moritz

 

Moritz
Top achievements
Rank 1
 answered on 07 Aug 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?