Good morning,
we would need to create a Telerik chart that takes data from a spreadsheet placed on the same page, to expect a real-time update of the chart when editing the spreadsheet.
Is it possible to implement this kind of solution or a variant of it that allows to update the chart as the data in the spreadsheet changes (without reloading the page)?
Kind regards,
Good afternoon
I am trying to amend the code in this article so that I can achieve the following:
1. Ability to remove items from the #newlist once they have been dropped
- I cannot for the life of me get the template functionality to work with the kb code so I must be missing something somewhere.
2. I am also unsure how to stop adding the same item repeatedly to the #newlist.
Any advice or pointers, gladly received.
Hi,
I have an issue related to Gantt Chart column text on language change. I want to see the text in the columns (see attached screenshot) in Spain for example. Is there any way to change column's text dynamically or in another language other than English?
Thanks
Hi,
I am implementing some interactive listbox, and in some cases I have quite a lot of items within.
I would like to display as many items as possible in the list, but also to give the user option to "expand" and get more detailed view on the item.
For example: In "mini" view, I have only item name. In "expanded" mode I have item name plus more text like some dates, ratings etc.
Is it possible to achieve this on current listbox?
Thank you very much.
Regards,
Vedad
Hi,
Is there a way to trigger a paste event when on click from the custom context menu? I am having different option to allow pasting based on the selection. But I will need to trigger the paste function not sure whether can i do it. Currently, my idea is to have the following option:
- Paste with format
- paste without format
How to persist expanded rows beyond one level?
https://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/state/persist-expanded-rows
I have used documentation found at the above link and it is working to a point. However, I have a a grid that had 4 levels.
Level 1 (each row has drop down)
Level 2 (each row has drop down)
Level 3 (each row has drop down)
Level 4
Can anyone explain or show me how you would keep all rows expanded if you have multiple levels?
The documentation above will keep only expanded rows opened from Level 1. But, I need to keep level 2 and level 3 rows expanded if they are open.
I do not understand how to do this likely because I am so fresh to JS, Jquery, and telerik controls in general.
Thanks!
Just trying to test out Kendo and as a first test making a grid using remote json , i'm not able to make it work.
If I just return pure json array holding the data array as only returned value , and not defining data or total in the schema , then it works.
But I need to include data value of "total", and the returned grid array in "items" - I'm not getting any entries in the Grid.
schema: {
type: "json",
data: "items",
total: "total",
.....
I do get the total value from the response , but no data in the grid from the "items" and no error messages
If I define data: as
data: function (response) {
console.log(response.items);
return response.items;
}
Then i see the grid data in my response.items , but not rendered in the Grid
as : [{"OrderID":762884,"Freight":11581,"Ship .........
Thank you for your help here