Telerik Forums
Kendo UI for jQuery Forum
3 answers
247 views

Hi,

We need the below option to be implemented on the Kendo pie chart.
1) How do we merge the below 2% series value in other series value? Video link mentioned below for your reference.
2) We need to show the merged value data in the tool-tip. I have added the video link on the pie chart working and screenshot of the code & data-source. Can you please check and help with this?

Video link (old&new) ,  screenshot 1 , screenshot 2


Preslav
Telerik team
 answered on 01 Jan 2020
1 answer
213 views

Hello,

I often use custom editors.

But when using the dropdown list
$ ("# ..."). data ('kendoDropDownList');

I need to access the editor in the form, but I don't know what goes into # ...

If you created this editor statically, you would have an ID, but if you create a custom one, you will not have a separate ID.

My custom editor looks like this, and the ID I tried was the same as the string output in options.field.

dayDropDownEditor : function (container, options) {
    $('<input id="operDay"  data-bind="value:' + options.field + '"/>')
        .appendTo(container)
        .kendoDropDownList({
            suggest: true,
            dataSource: [
                {name:'월', operDay: '월요일', isDeleted: true },
                {name:'화', operDay: '화요일', isDeleted: false },
                {name:'수', operDay: '수요일', isDeleted: true },
                {name:'목', operDay: '목요일', isDeleted: false },
                {name:'금', operDay: '금요일', isDeleted: false },
                {name:'토', operDay: '토요일', isDeleted: false },
                {name:'일', operDay: '일요일', isDeleted: false }
            ],
            dataTextField: 'operDay',
            dataValueField: 'operDay',
            valuePrimitive: true,
            select: function(e){
                alert(JSON.stringify(options.field));
                 
            },
            change: function(e) {
 
            },
            template: kendo.template($("#template").html())
        });
}

 

"fn1": function() {
                var dropdown = $("#operDay").data("kendoDropDownList");
                var oranges = dropdown.dataSource.get(2);
                oranges.set("isDeleted", true);
            }

What data should be inside # ... for me to access .data ('kendoDropDownList')?

Plamen
Telerik team
 answered on 01 Jan 2020
1 answer
426 views

After removing an item in the list box it does not focus on the first item by default, We need an option to focus on the first item. Attached screenshot & video link for your reference. Please check 

Video link and screenshot

Hetali
Telerik team
 answered on 31 Dec 2019
8 answers
1.9K+ views
I have a few cells in a grid where the value contains HTML strings.   As an example, we bold part of a string like "This item costs <b>$100<b>".  When we export to Excel, that cell displays the full HTML string.  Do you know if there's a way through the api that we can tell that cell to render as HTML so that the <b> tags don't show up and the text is properly bolded?  Thanks!

Regards,
Brian
Alex Hajigeorgieva
Telerik team
 answered on 31 Dec 2019
1 answer
72 views
I have a button on my ASP.NET webforms project that once clicked will open a kenodoWindow whose content is another web page in the same project. All forms load correctly except for one with a report viewer tool. Once clicked The KendoWindow pops open and the toolbar for the reportviewer tool, however it doesn't load the actual reports to display. When I try opening the same page in its own webpage and not a Kendo Window the reports load fine in the tool. So my kendoWindow seems to be working fine, and reportviewer tool also works fine. Any reason why these two dont seem to work together?
Veselin Tsvetanov
Telerik team
 answered on 30 Dec 2019
1 answer
243 views

Hi Developer,

How to dynamically increase rows after I have created the Kendo SpreadSheet. The default row number is 200. When I use insertRow, the sheet only shift row next, but the rows still 200 and not 201.

 

Best regards,

Sang

Veselin Tsvetanov
Telerik team
 answered on 30 Dec 2019
5 answers
1.5K+ views
Hello,
        I am looking for Kendo ui progress with Custom text to be shown below loading image. How that can be achieved.  This ui progress link shows only replacement with other text or image . Not combination of both . Custom text to be shown below image
Plamen
Telerik team
 answered on 27 Dec 2019
3 answers
322 views

I have a Kendo UI treeview which contains some node that i load children on expand by firing a ajax call and returning a data array. This works fine and i get the data and it binds to the tree.
However the issue occurs after the first expand of a node, when i expand the node first time the tree behaves correctly and everything is fine, however if i collapse and expand the node again the tree does not push the other nodes down and the expanded node overlaps all other icons in tree.

Here is the code that i use to build the tree

01.$('#all-library-tree').kendoTreeView({
02.            loadOnDemand: true,
03.            dataSource: _masterTreeViewMasterObj.sort().reverse(),
04.            expand: function (e) {
05.                var treeView = $('#all-library-tree').data('kendoTreeView');
06.                var dataItem = treeView.dataItem(e.node);
07.                dataItem.load();
08. 
09.                if (dataItem.children.data().length !== 0) return;
10. 
11. 
12.                if (dataItem.id === -1) {
13.                    //get unused data
14.                    GetUnUsedChildrenForRHSTree(dataItem.text, dataItem.children);
15.                }
16. 
17.            }
18.        });
Dimitar
Telerik team
 answered on 27 Dec 2019
6 answers
81 views

Hi,

I am currently using the <A href> tag button as a template feature for column cells.

I want the button and the value I entered directly in this cell to be displayed at the same time.

[Value {button}]

Think of {} as a button.


The ideal solution is
[Value | {button}]
I want to have a value and a button area in one cell.

No matter how long the value is, it must not extend beyond the button area.

But the most important thing is to make the value visible first.

The current value is entered, but because the transparent area of the small button covers the entire cell (which is my reasoning), the value is hidden and invisible.
(Click the cell for correction and you will see the value. If it goes out of focus, it will be hidden again.)

How can we solve this?

 

 

columns: [
                {selectable: true, width: "35px"},
                {field: 'fnProdInOutSeq', hidden: true},
                {field: 'lotNo', title: '입고 Lot', width: 100},
                {field: 'prodNm', title: '품명', width: 100,
                    template:
                        "<a href='javascript:' class=\"k-icon k-i-search\" onclick='return fnObj.gridView03.gridFn.searchComp(\"#=  prodNo  #\")' style='float:right'> </a>"
 
                }
]
Tsvetomir
Telerik team
 answered on 25 Dec 2019
3 answers
77 views
Hello,

I'm using the create, update, etc. features of transport very well.

But there is a problem.

I wanted to proceed with a simple Insert, Update, but the above create, update has the condition that the datasource should have a change.


I've looked up the dataSource.query () method so is this correct?

However, the only example is select, and I do not know the configuration that proceeds to create / update with the data I prepared arbitrarily.


If this is possible please give me some good sample code.
Tsvetomir
Telerik team
 answered on 25 Dec 2019
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?