Telerik Forums
Kendo UI for jQuery Forum
4 answers
954 views

I'm trying to get a Kendo UI Grid working with AngularJS and a sample of data. I am encountering a generic "Error: Invalid template" error when the grid attempts to display the data. The data I am using is:

$scope.dataSource.data = [
        {
            "874": " ",
            "878": "Example1",
            "882": "Example2",
            "884": "4",
            "885": "Example 4",
            "886": "in",
            "_id": {
                "$oid": "eaa1e4b0a8480579f79e"
            },
            "ID1": "46237",
            "ID2": "",
            "ID3": "",
            "ItemType": "Line",
            "ItemName": "Example 6"
        }
    ]


I know it's throwing the error on the columns with numbers as headers, because when I take out those columns it works just fine. Also, if I swap those column headers out for letter values, it also renders correctly.

Is this a known issue with the Kendo UI Grid or is there a workaround? I know the data I will be displaying will have numbers as headers often.

Cheers

Alex Hajigeorgieva
Telerik team
 answered on 22 May 2020
7 answers
318 views

I have multi-select drop-down which having 10000 devices data. i have configured server side filtering and virtualization . but while searching I am getting a issue with  value mapper . it's copying selected data.

 

https://dojo.telerik.com/eyuTEZaZ

 

I am getting reference above link . its also giving same issue . 

Veselin Tsvetanov
Telerik team
 answered on 22 May 2020
1 answer
224 views

Hello,

I'm trying to make a filter with two filters inside .. !!

I have a MultiSelect and AutoComplete and I want to take the value of them and put them in a filter...

so what I did is this...

in onChange_MultiSelect I wrote this...

var filter = {
 
               logic: "or",
               filters: new Array()
           };
           Global_Selected_Mitarbeiter_Filter = {
               logic: "or",
               filters: filter.filters
           };
 
           scheduler.dataSource.filter(filter);
           DataItems.forEach(function (item, index) {
              // var itemToAdd =
             //  {
                //   Text: item.CrmUserNameZuordnung,
                 //  Value: item.ID
              // };
              // selected.push(itemToAdd)
 
               //for (var i = 0; i < selected.length; i++) {
               for (var i = 0; i < DataItems.length; i++) {
 
                   filter.filters.push({
                       field: "CrmUserName",
                       operator: "eq",
                       value: DataItems[i].CrmUserNameZuordnung
                   });
               }
           })

 

and in onChange_AutoComplete i wrote this ..

var filter_All = {
 
     logic: "and",
     filters: new Array()
 };
 var filter = {
 
     logic: "or",
     filters: new Array()
 };
 if (auto_Change.value() != "") {
     filter_All.filters.push(filter);
 }
 if (Mitarbeiter_MSelect.value() != "") {
     filter_All.filters.push(Global_Selected_Mitarbeiter_Filter);
 }        
 scheduler.dataSource.filter(filter_All);
 DataItemss.forEach(function (item, index) {
   //  var itemToAdd =
   //  {
    //     Text: item.Title
         //Value: item.Title
         //Color    : item.color
    // };
   //  selected.push(itemToAdd)
 
     //for (var i = 0; i < selected.length; i++) {
      
     for (var i = 0; i < DataItemss.length; i++) {
 
             filter.filters.push({
                 //2- this the title of the field of the multiselect it self .. like what to show as title for these fields
                 field: "title",
                 operator: "startswith",
                 //value: selected[i].Text
                 value: DataItemss[i].Title
             });
         }
 })

 

so basically what I did is, putting the value in two filters and then push them into a third filter and try to filter the Scheduler... 

but it's not working .. is there another way to approach this goal .. or any tip to make it right ??

Thanks in advance ...

K.Ramadan
Top achievements
Rank 2
Veteran
 answered on 22 May 2020
1 answer
91 views

I have a grid containing dropdown column bind to the field named ChartTypeId. It has a custom template which display the ChartTypeName. The problem, it sorts the column by ChartTypeId. How can I modify it to sort by ChartTypeName instead of ChartTypeId?

 

1.{
2.  field: "ChartTypeId",
3.  title: "Chart Type",
4.  width: "auto",
5.  template: "${ChartTypeName}",
6.  editor: ChartTypeDropDownEditor,
7.  editable: true,     
8.},
Martin
Telerik team
 answered on 22 May 2020
1 answer
918 views

I'm attempting to update my (licensed) version of Kendo UI for Jquery and AngularJS to the newest release (2020.2.513 at this post). I downloaded kendo.all.js and put it in a new directory, then changed my links to point at the new directory.

Upon logging into my application, I get this trace in my dev tools:

Error: [$injector:modulerr] Failed to instantiate module core due to:
[$injector:modulerr] Failed to instantiate module kendo.directives due to:
[$injector:nomod] Module 'kendo.directives' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

My application worked fine with my previous version, 2016.3.914 and AngularJS 1.5.8, but now has issues. Can anyone assist?

Aleksandar
Telerik team
 answered on 22 May 2020
1 answer
232 views

Hi,

I am trying to save and restore settings of table header in kendo treelist. Is there a way to persist treelist as we can do in Knedo Grid (below link shows the example how to persist grid)?

https://demos.telerik.com/kendo-ui/grid/persist-state

 

As we dont have getOptions and setOptions in Kendo treelist, how can we achieve this feature?

Thanks,

Ramesh

Nikolay
Telerik team
 answered on 21 May 2020
3 answers
162 views

Hi, I try to make dropdownlist create less "DOM" components to keep our app fast, even with lots of dropdown loaded with 100-1000 items.

So, I found that simple quick solution that works very well, I filter data on open / close to release "dom" items when I don't need them.

But, I have an issue when I apply a "contains" search.

Look at this

https://dojo.telerik.com/@foxontherock/OciGurUy/3

Open the combo, search for "trois" using the dropdown search box, then select it.

You will see, the combo re-opens, immediately when I apply the filter on the "filterOnValue" function.

If I don't set any "contains" search, it works well.

*** may I suggest to use that "DOM-trick" using filter on open-close the default behavior for all your components?  We plan to use it in dropdown, treeview, ...

We tried using "virtual", but there's too my bugs with it it never works as expected and it's too complicated. 

Misho
Telerik team
 answered on 21 May 2020
1 answer
497 views

hi Kendo UI team,

here is the description of my problem.

Requirement : I need to plot Trendline and Standard deviation lines on a Scatter Chart. 

Problems : 

I tried to achieve this using kendo.draw.Path to draw Trendline and SD lines

But the problem is

  1. kendo.draw.Path considers whole canvas as the plottable area with top-left corner as origin (0,0)
  2. Scatter chart has origin at left-bottom with some margin based on axis labels
  3. I could not figure out the mapping between chart coordinates & path coordinates 

Questions:

  1. How to get the boundaries of Chart Area in coordinates?
  2. How to get mapping between Charts data points and Path w.r.t. coordinates? i.e. the x,y coordinates of  the data (1023, 3250) is (150, 320)

The data for Scatter Chart varies from decimal points to 1000s (on both the axes) based on the user selection. Hence knowing the mapping between the actual coordinates and the data points only solves the problem.

 

thanks,

Srinivas

 

Viktor Tachev
Telerik team
 answered on 21 May 2020
7 answers
191 views

Hi and happy new year!

 

I have strange behaviour on my gantt datasource occurring when read request returns error 500. (i am stuck with specific endpoint which returns 500 instead of 404 when requested item is not found).

- I instantiate gantt widget and set all required options and datasource(s).
- Under read request specific project id is passed to the server. 
- Server responds with 500 and I catch it with error: function (e) {
return myErrorHandler(e, $scope); }, //Handler basically reads error and displays adequate message
- Gantt is rendered but it is empty as expected.

- I use my project selector and chose another ID that 100% exists. 
- I reset my datasource using new ID and use gantt.setDataSource to update gantt.
- Data is read from the server, no error.
- Schema: Parse is completed successfully with data. But no dataBound or anything else happens after and widget gets stuck on loading spinning wheel and doesn't populate data.

If first step is performed with correct ID (no error) widget is rendered correctly and then second step (opening other project) is working perfectly fine.

I tried with sync, refresh, read afterwards on the widget, but no success. I tried commenting out error handling implemented, but also no success.

I suspect error caught does something specific to the datasource and/or widget, but I cannot figured it out.

Any help/suggestion is more than welcome.

Thank you and regards,

Vedad

Petar
Telerik team
 answered on 20 May 2020
1 answer
1.0K+ views

Hello, I am going to build a dashboard and am thinking about using a listview(or multiple) to house widgets/partial views.  I will store the users config in the db so I would like to fetch that and load the widgets dynamically into a kendo listview.  Is that possible?  Any code samples out there?  Is there a better way to do this.  Just trying not to code it all manually and trying to take advantage of drag and drop, sorting/etc...

 

Thanks

Alex Hajigeorgieva
Telerik team
 answered on 20 May 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?