We need the ability to modify the title of the new predefined dialog control. This control is a great replacement for JavaScript alerts and confirms. However, we should be able to modify the title by passing in an additional parameter when using the control. Below is a workaround using CSS: <style> .k-confirm .k-window-titlebar::before, .k-alert .k-window-titlebar::before { content: 'My New Title'; font-weight: bold; } .k-confirm .k-window-titlebar .k-dialog-title { visibility: collapse; } .k-dialog .k-window-titlebar .k-dialog-title { visibility: hidden; } </style>
As of now there is no right click and double click events on diagram shapes, It will be useful if an event is raised on these particular actions. because these are the obvious actions on shapes
Changing the min / max value of the progressbar isn't possible. For now, we have to destroy the progressbar and recreate a new one using the new min / max values.
Please add Breadcrum functionality in kendo.
it's looks nice if we have an option to move chatbot image to either on first or last of message for multiple messages (currently the chatbot image located on the last message)
A lot of app developers like the idea of adding a chat function to their app. In UI for WP Telerik has this beautiful Conversation View. Make the available as a full-blown widget für Kendo UI (mobile). Think of SignalR as a possible backend technology. Chat bubbles should have the ability to show text/pictures/emoticons. Provide a ready2use class for asynchronous or backgroud-sync (up/download) e.g. for ASP.NET Web API.
Please provide support of row grouping as it is going to be a very useful feature and excel is rich data file so we always need to group various sections. An example of the feature is available in the attached file and the link below.
Hi,
I'm not sure this will be a bug in your mind but I just wanted to make sure I understood how things work. We have a grid definition which includes the dataSource.schema.model definition. One of the fields (TradeDate) in the schema has a type = "date". In addition, we assign local json data to the "data" property of the dataSource. Our JSON data comes in with dates in the ISO format (a string with the "T" in it). When the grid is initially created everything works fine. We notice that the TradeDate field in the dataSource.data() is converted to an actual javascript date. I assume this is happening because of the schema definition. Later we retrieve new data via an ajax call and apply it to the grid using the grid.dataSource.data(newJson) command. However this does not seem to process the TradeDate field and convert it into a real javascript date. This causes problems because we have filters applied based on the TradeDate. It works fine the first time but fails any time the data is refreshed (because the field value is a string). We tried the schema.parse function but that also is only called the first time. Ultimately we coded the grids "dataBound" event and everything worked. It gets called each time the data is refreshed. I was just wondering if I could be doing something differently so that the schema handled the conversion all the time.
self._grid = grd$.kendoGrid({
columns: [...],
dataSource: {
schema: {
model: {
id: "somekey",
fields: {
NewTradeFlag: { editable: false },
TradeDate: { editable: false, type: "date" },
...
}
}
},
data: self.ViewModel.DisplayData.TransactionData
}
...
})
Later on we do this
self._grid.dataSource.data(newJsonData);
P.S. we originally were using MVVM binding straight to the ViewModel but that didn't work either.
Thank you in advance, Jim.
For example; similar to http://www.highcharts.com/stock/demo/arearange Having area 'scatter' support, such as 'scatterArea', and 'scatterAreaRange', like the existing 'scatterLine', is also desirable.
Our users love how pretty Kendo UI charts are. We usually visualize data for them with Pie or Bar charts, often in combination with a Kendo UI Grid. However they almost always want the ability to export what they see in the browser to PowerPoint. One workaround might be to save the Kendo elements to an image and stick that into a PowerPoint slide. However they don't want that. They want a real PowerPoint slides with real PowerPoint charts and grids live objects like they were initially created in PowerPoint. We have managed to implement something to do that with OpenXML, but it will be a HUGE time saver if Kendo does that out of the box.
Dear Team,
Is there any plan or road map for the word cloud widget?
https://wordcloud2-js.timdream.org/#love
Regards,
Velusamy
If you open the popup of the above components and resize the browser window with the popup still opened, the component is being resized according to the window size but the popup keeps its initial width.
The above scenario can be observed on this link: https://dojo.telerik.com/ovOTUDeV
The following typings are missing in @types/kendo-ui version 2019.3.0
We are currently in the process of converting our site from using RadAjax controls into Kendo UI controls. We use a lot of drop downs (single select and multi select). While working with the Kendo UI controls, we saw that there were no multi select drop down controls available. There is a multi select control, however it uses a 'token' style and is not a control that we can use in our environment. There should be a multi select drop down control similar to the control used in RadAjax framework.
Please provide keyboard shortcut & navigation to open a cell lookup list (menu) & for traversing menu items as shown below;
In Excel Alt+up or Alt+down arrow keys work for the same but in Kendo UI Jquery - spreadsheet , these keys are not working.
We would like the Kendo editor to provide more wysiwyg settings on headers in order to maintain accessibility standards for users. We need tables to default to data tables and not layout tables to meet accessibility checker standards.
When using the Kendo editor in Sitefinity, checking the "Associate cells with headers" box, nothing happens and I am not sure what steps need to be taken to associate them since that is the only setting in the table wizard that mentions headers. The only way to create headers is to go into the HTML and add them, this is not ideal for our users to have to do. This also creates an accessibility concern since all tables created default to layout tables versus data tables (in third-party accessibility checker), even when the table should be marked as a data table.
We need this MVC wysiwyg editor to fully function like it's webforms counterpart. As newer users to Sitefinity we were encouraged/directed to use MVC as the product was transitioning to this model from webforms. Unfortunately, not all of the tools transitioned to MVC retained all the functionality of their webform counterpart.