Hello, I am trying to use the table-related toolbar tools in my editor. I am getting the compiler.js:2175 Uncaught Error: Template parse errors:
'kendo-editor-insert-table-button' is not a known element:
1. If 'kendo-editor-insert-table-button' is an Angular component, then verify that it is part of this module.
2. If 'kendo-editor-insert-table-button' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. (" <!-- Kendo Built-In Toolbar tools not working correctly -->.
I have not had an issue with any other toolbar tools.
Kendo UI for Angular and Kendo UI for jQuery complete package (all components, css, js) downloadable at once with documentation. Just the way how it was for old (ex: Kendo UI jQuery 2005) versions. No individual component download.
Using a line chart, using date in the category axes, it will be useful to use the format "week number".
See your example: https://47hbw1.run.stackblitz.io
It doesn't look available from this list: https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md
It is really hard to check change log for every component you have. Why not implement common change log for all components.
I already talk to Carl Bergenhem (Product Manager for Kendo UI) about that, and he reply:
"
Great suggestion! I’ll sync this with our web site team and try to see if we can create something like this!
"
As picture says more then 1000 words, I attach propose solution.
Reproduction
We got the feedback that in some scenarios it might be more intuitive to open the editor row below the last row since the user expects to "append" new rows at the end.
Reproduction
Consider the possibility of leveraging reusable HTML components with Kendo Angular or any other Kendo toolset:
https://caniuse.com/#search=components
Can we have document viewer for angular can show/display/preview different file format?
like .PDF, any type of image file {png, jpg, jpeg, bmp}, .docx, .doc, .txt, .xls, .xlsx, .msg
Hi,
I would like to know if there is any CAPTCHA control that can be used within Angular. I came across the following link:
https://www.telerik.com/products/aspnet-ajax/captcha.aspx
but in that link it is using ASP.NET so we would like to know if there is a way we could call this from our Angular Project.
Please let us know.
Thanks and Regards,
Avinash Vallabhaneni
I would like to allow users to sort single and multiple at the same time.
This could be achieved by adding another option to SortSettings: Single | Multiple | SingleShiftMultiple. The name is not the best proposal, but describes desired behaviour:
By default when user click column, previous sort is cleared and new is applied. But if user holds down shift key, new sort is added to SortDescriptor[] (current behaviour for multiple).
The manner in which the Kendo Grid handles multiple column sorting is unusual and therefore not what a user would expect.
I believe that people expect that the column they click on to always be the primary sort column. In the Kendo grid, (when in multi-column mode) this is not the case.
If I click on the "Unit Price" column header, and then on "Product Name", nothing happens. Instead, clicking on "Unit Price" a second time sorts the table by "Product Name". This is not natural.
Instead, this should simply behave like a non-destructive sort. If I click on "Unit Price" and it sorts by that. Then, clicking on "Product Name" should sort everything by Product Name and, if the names are the same, the items would be sub-sorted by the previously selected column: "Unit Price"
I would further ask that the only column that shows the arrow be the primary sort column. Users want to see what the primary sort column is, and not be confused by the other columns, which they will assume are sorted in a reasonable way. The indices help, but I still think that a single arrow denoting the primary sort column would be preferred.
https://www.telerik.com/kendo-angular-ui/components/grid/sorting/
To be backwards compatible, maybe introduce a 'natural' sort mode which would behave in this manner, since I really believe that this is what a user expect.
As a workaround, we put the grid in 'single' mode, and then when the sort changes, we do the following. I limit the number of SortDescriptors to 3 as a compromise between sorting the columns in a reasonable way and yet prevent there from being too many arrows
public autoSortChange(sorts: SortDescriptor[]) {
let singleSortKey = sorts[0];
let newSort: SortDescriptor[] = [];
newSort[0] = singleSortKey;
this.internalSortDescriptors = this.internalSortDescriptors.filter(des => des.field !== singleSortKey.field)
newSort = sorts.concat(this.internalSortDescriptors)
this.internalSortDescriptors = Array.from(newSort);
if (this.internalSortDescriptors.length > 2) {
this.internalSortDescriptors.length = 2;
}
this.gridState.sort = newSort;
this.gridData = ...
}
Cannot copy-paste date between 2 datepickers. Found issues:
Can be reproduced in any Kendo example (and browser) on the documentation site.
Forms are what we use every day and if there's a form, we often have to validate the input and show the validation results to the user.
Problems:
Opportunity:
Feature request:
Example:
// global setup
validationService.configure({
showIf: 'touchedOrDirty',
messages: {
required: "This field is required',
customKey: 'This field needs ... ',
customKey2: errorMessageForCustomKey2Fn
});
// callback to generated error message for customKey2
function errorMessageForCustomKey2Fn(control: FormControl) => return `can include 'but is ... ' from form control`;
// HTML in component template
<input formControlName="myinput" ... />
<validation-errors forControlName="myinput"> // < should handle all globally registered errors without additional code.
<error key="keyOfValidatorOnlyUsedHere">Sorry, but you have to</error>
</validation-errors>
I think such a feature could massively reduce the work to setup forms.