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

The ASP.Net Core project is using the Kendo grid.

 

 On selection of a dropdown's, item needs to perform a action on all the selected rows (using checkbox checked) .

how to accomplish it.

Mihaela
Telerik team
 answered on 06 Aug 2021
1 answer
496 views
We need to let users view sensitive documents within our application so would like to make sure they cannot be downloaded to the local machine, printed etc. Does the Telerik PDF Viewer cater for this?
Aleksandar
Telerik team
 answered on 04 Aug 2021
1 answer
840 views

I am using the Core Grid with grouping.  I am grouping on a field called "ClassOrder", but would like to display the name of the field called "Class" in the template.  The desired order of display is not alphabetical, but driven by that "ClassOrder" column. 

What is the syntax to use in the group header template to refer to other fields in the row?

 

Thx!

Stoyan
Telerik team
 answered on 30 Jul 2021
2 answers
168 views

Hello guys,

is it possible to display a warning on the scheduler when Update action is triggered? It happens often that users change the dates by mistake when using scheduler (they drag and drop or expand).

    Thanks.

    Boris
    Top achievements
    Rank 1
    Iron
    Iron
     answered on 29 Jul 2021
    1 answer
    812 views

    I have a slider on a page set to a min/max of 0 and 100.   The min/max of this slider is variable and changes depending on what a user has selected in a dropdownlist.  For example, when the user selects an item in the dropdownlist, I change the slider's min/max value of 10 and 50 using setOptions.

     var slider = $("#slider").data("kendoSlider");
                    slider.setOptions({
                        min: 10,
                        max: 50,
                        smallStep: 1,
                        largeStep: 5,
                        value: 10
                    });

    slider.resize();

    This seems to work as the slider updates to the properties I set in setOptions.  But after I do this, it doesn't consistently let me jump to a value in the slider.   For example, if I try to click the slider line at 40, the slider won't move to it.  Sometimes it will, sometimes it won't.   If I drag the slider ball to a number it works fine, if I user the increase/decrease arrow buttons it works fine.  But clicking on a number in the slider bar does not work.  

    - This jumping to a number in the slider works fine before I dynamically change the properties using "setOptions".
    - This problem occurs regardless of what property in the slider I change using "setOptions". 

    Any ideas? Thanks.

    Stoyan
    Telerik team
     updated answer on 27 Jul 2021
    3 answers
    768 views

    Hi,

    I am trying to change the culture for the PDFViewer page of the AspNet.Core example, but it is not working. I have searched this forum and all the documentation available with no success. This is the code I am puting at the beginning of the page:

    @section scripts{

        <script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.2.2/pdf.js"></script>
        <script>
            window.pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.2.2/pdf.worker.js';
        </script>
        <script src="~/lib/kendo/js/jquery.js"></script>
        <script src="~/lib/kendo/js/kendo.all.min.js"></script>
        <script src="~/lib/kendo/js/cultures/kendo.culture.pt-BR.min.js"></script>

    }

    <script type="text/javascript">
        //set the Kendo UI culture
        kendo.culture("pt-BR");
    </script>

    It should work, but the page still shows up with the english language.

    I would appreciate any help.

     

    Patrick | Technical Support Engineer, Senior
    Telerik team
     answered on 27 Jul 2021
    1 answer
    377 views

    Hi,

    I have a Filter Control combined with a Grid Control.
    Both are linked to the same Kendo Datasource.

    Everything works like a charm

    Now I want to set up a enum list for a field in the Filter Control, but I was unable to figure out how. (only free text works in the Filter Control)

    The data source is gigantic, the filters in the filter control must be set before calling the data and as there are some fields like "business type" I want to show all possible values, without having each user memorize each possible value for each enum field.

    What I want works with the datagrid filter once the datagrid is populated from the datasource, but it's impossible to load all the data and therefore I need the filter control.
    (If there is another way, I am open to it)

    Is this possible?

    Is there some documentation I missed?

     

    Mihaela
    Telerik team
     answered on 27 Jul 2021
    1 answer
    284 views

    I can not figure out how I can pass a function for content in an Asp.net core to tooltip.  In the JQuery examples you can do something like this:

        $("#Name").kendoTooltip({
            content: function (e) {
                return $(e.target).data('tooltip');
            }
        })
    I have been trying to pass a function to the htmlhelper and can not figure it out.  I have tried passing with events, and puting a function in the content.  I have no joy.
    @(Html.Kendo().Tooltip()
        .For("#Name")
        .AutoHide(true)
        .Position(TooltipPosition.Top)
        .Content("TEST TEST")
        .Width(120)
        //.Events(events => events.ContentLoad("showTooltip"))
        )
    Also can I use a class in the For, like .For(".form-tooltip")?
    Ivan Danchev
    Telerik team
     answered on 26 Jul 2021
    12 answers
    6.4K+ views

    Hi all,

    Is anyone else seeing the error below?  I get it at runtime when CreateHostBuilder(args).Build().Run() is called.

     

    System.AggregateException
      HResult=0x80131500
      Message=Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: Kendo.Mvc.Rendering.IKendoHtmlGenerator Lifetime: Transient ImplementationType: Kendo.Mvc.Rendering.KendoHtmlGenerator': Could not load type 'Microsoft.AspNetCore.Mvc.Internal.ClientValidatorCache' from assembly 'Microsoft.AspNetCore.Mvc.Core, Version=3.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'.)
      Source=Microsoft.Extensions.DependencyInjection
      StackTrace:
       at Microsoft.Extensions.DependencyInjection.ServiceProvider..ctor(IEnumerable`1 serviceDescriptors, ServiceProviderOptions options)
       at Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(IServiceCollection services, ServiceProviderOptions options)
       at Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory.CreateServiceProvider(IServiceCollection containerBuilder)
       at Microsoft.Extensions.Hosting.Internal.ServiceFactoryAdapter`1.CreateServiceProvider(Object containerBuilder)
       at Microsoft.Extensions.Hosting.HostBuilder.CreateServiceProvider()
       at Microsoft.Extensions.Hosting.HostBuilder.Build()
       at GariboldiApp.Program.Main(String[] args) in D:\Project Consultants\JV\git_work\Garibaldi\Gariboldi\GariboldiApp\Program.cs:line 16

    Inner Exception 1:
    InvalidOperationException: Error while validating the service descriptor 'ServiceType: Kendo.Mvc.Rendering.IKendoHtmlGenerator Lifetime: Transient ImplementationType: Kendo.Mvc.Rendering.KendoHtmlGenerator': Could not load type 'Microsoft.AspNetCore.Mvc.Internal.ClientValidatorCache' from assembly 'Microsoft.AspNetCore.Mvc.Core, Version=3.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'.

    Inner Exception 2:
    TypeLoadException: Could not load type 'Microsoft.AspNetCore.Mvc.Internal.ClientValidatorCache' from assembly 'Microsoft.AspNetCore.Mvc.Core, Version=3.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'.

     

    Many thanks!

    Jerry Tennison


    Russell
    Top achievements
    Rank 1
    Iron
    Iron
    Iron
     answered on 22 Jul 2021
    1 answer
    113 views

    I have an issue while enabling headerview in the tree list as per picture 1. If I disable it works fine, but if I need to enable it to make the title clear I get an error as per picture 2

     

     

    Aleksandar
    Telerik team
     answered on 20 Jul 2021
    Narrow your results
    Selected tags
    Tags
    +? more
    Top users last month
    Anislav
    Top achievements
    Rank 6
    Silver
    Bronze
    Bronze
    Jianxian
    Top achievements
    Rank 1
    Iron
    Marco
    Top achievements
    Rank 3
    Iron
    Iron
    Iron
    Jim
    Top achievements
    Rank 2
    Iron
    Iron
    Nurik
    Top achievements
    Rank 2
    Iron
    Iron
    Want to show your ninja superpower to fellow developers?
    Top users last month
    Anislav
    Top achievements
    Rank 6
    Silver
    Bronze
    Bronze
    Jianxian
    Top achievements
    Rank 1
    Iron
    Marco
    Top achievements
    Rank 3
    Iron
    Iron
    Iron
    Jim
    Top achievements
    Rank 2
    Iron
    Iron
    Nurik
    Top achievements
    Rank 2
    Iron
    Iron
    Want to show your ninja superpower to fellow developers?
    Want to show your ninja superpower to fellow developers?