Hello Kendo UI community,
I am going to develop a good-looking UI form with multiple components: input, textboxes, comboboxes, dropdownlists, etc. I am currently doing a research on interesting custom themes built for bootstrap. My question is can we apply those custom themes to the bootstrap that we have for Kendo UI? If yes, what would be the process like? Thanks.
Hi,
Which type replace morning in scheduler ? https://angular-kqsgvs.stackblitz.io
I have following error message "and 'type' does not exist in type 'SchedulerEvent'. type: 'morning'"
Regards
Hello,
I want to place ```kendo-datepicker``` into my website, which I want to be responsive also for mobile devices, i.e. width cca 350 px.
I reduced the font and overall size of all controls (also buttons and comboboxes from bootstrap library) in the view, even the datepicker textbox. I managed also to reduce the size of datepicker popup by scaling it (I found this tip somewhere here in forum), but it's wrongly placed - because the textbox and button on ribbon above are not centered, the popup is not centered as well and is off the left edge.
Screens of popup in original and scaled size are attached.
Is there any straightforward way to reduce it's size (except changing font-size which does not work for me and scaling which I described above) so it would fit into screen?
Thanks for any advice.
Frimlik
Hi
I tried your schedule sample https://stackblitz.com/edit/angular-wttnac-9ednxl
but i have folloing error message
Error: src/app/app.component.ts:18:48 - error TS2339: Property 'slotClass' does not exist on type 'AppComponent'.
Could you help me thanks
Hi
Could i have calender of week and scheduler with day detail visible simultaneously ?
like outlook.
Regards
What to I need to do in onDragEnd() in this sample, it should work?
https://stackblitz.com/edit/angular-jadbh4?file=app%2Fapp.component.ts
Hi,
In a definition like below I get the same Object in the 'dataItem' parameter as in the 'formGroup' parameter. This leads to me not being able to access the dataItem in my template.
<ng-template kendoGridEditTemplate let-dataItem let-formGroup="formGroup">
<!-- Usage of both dataItem and formGroup -->
</ng-template>
I am trying to have dynamic data in a kendo grid which is determined at runtime. The structure of data is an array of arrays of objects. Visually, I would like to have dynamically generated column groups that contain two columns, and the columns have as many rows as objects within the array of arrays. I've been struggling how to make this happen, due to various issues. One issue is that the column indexes add even if they are being dynamically generated (but instead should be reset upon a new column group, but just increases with the next columngroup). I also noticed that the row size is always the same as the column size, because when adjusting the number of inner arrays, both the row size and column size are exactly the same, that is, the number of inner arrays, and the rowsize does not depend on the amount of objects within a given inner array (as it normally does were all the objects in the outer array, and that is the behavior I would want).
Here is a link that shows an example of what I'm talking about, with a normal html table on top that is in the style I'm looking for, and on the bottom the kendo grid that isn't styling like I want it to:
https://stackblitz.com/edit/angular-u9unhk?file=app/app.component.ts
(I've tried many different ways to mimic the top behavior but I have so far failed to do it. )
Any help would be greatly appreciated!
how to change column filter format for numbers?
the default format is:
1,200.00
the format I would like to use is:
1.200,00
Great regards,
Alex
Hi,
We want to use the Kendo UI grid, but with inline editing functionality.
We want to have an edit button on the end of the row. If the button is clicked, the detailed row templated should be shown, but should be editable of course.
It seems to be a combination of following examples:
Detail Row Template - Grid - Kendo UI for Angular (telerik.com)
Custom Editing in Reactive Forms - Grid - Kendo UI for Angular (telerik.com)
Example:
Grid has a data item with two columns (Order + Name) and an actions column. The data item also contains other columns which are only visible in edit-mode: 'Nederland', 'Frans', 'Engels', 'Active'. The grid should be inline-editable, by showing the edit-form below the non-editable row directly. (combination of the two mentioned links above: master/detail + custom editing in reactive forms)
On top of that, we want to create a generic grid (wrapped kendo ui grid). The templates/columns/layouts should be definable outside that generic grid. In that way we can use the generic grid on multiple pages and the templates/columns/layouts should be provided as input to that component.
How can we achieve this?