Hello,
I would like to have horizontal scroll if the content is bigger than a certain size, and otherwise the grid takes the 100% width. At the moment, if I set width for all columns the grid does not take the full width, and If I don't it won't have horizontal scroll.
So, I thought one way to reach this aim is to have a possibility to set min-width for columns, but it seems there is no such feature.
Thanks,
Mojtaba

Hi !
I have to locate Save-button for saving created new record in table in toolbar of the Grid.
<kendo-grid
..........
(edit)="editHandler($event)"
(cancel)="cancelHandler($event)"
(save)="saveHandler($event)"
(remove)="removeHandler($event)"
(add)="addHandler($event, myForm)"
..........
#grid
>
<ng-template kendoGridToolbarTemplate>
<button *ngIf="!isEdit && !isNew" kendoGridAddCommand type="button" look="bare" (click)="isNew = true">
<span class="fa fa-plus-circle"></span>{{ strings.add }}
</button>
....................................................
<button #btnSave class="btn-save" [disabled]="myForm.invalid || myForm.pristine" kendoGridSaveCommand [primary]="true" look="bare">
<span class="fa fa-check-circle"></span>{{ strings.save }}
</button>
....................................................
</ng-template>
But when I am adding new item in grid then Save-button isn't appearing (display: none property is set for that element).
I am trying to make Save-button visible/invisible inside my custom code. But in that case I am getting error inside save-command.directive.js (more precisely inside edit.service.js, string var formGroup = this.context(rowIndex).group; (this.context is undefined))
When I am trying to use custom button for saving created record I don't see the way how to get values of created record. May be you give me a piece of advice in what way in that case I can get created record ?
So, how can I solve that problem ?
Thanks a lot.

Hi,
I have seen some code in our project using formContol attribute. I couldn't find any documentation on it. For some reason this is causing the default value not set on the dropdown.
dropdownPlaceholder is something like this
this.dropdownPlaceholder = {
label : `Select ${label}` ,
value : null
};
Example:
<kendo-dropdownlist [data] = "list"
[textField] = "'label'"
[valueField] = "'value'"
[defaultItem] = "dropdownPlaceholder"
style="background-color: inherit"
[valuePrimitive] = "true"
(valueChange) = "onDropdownValueChange($event)"
[popupSettings] = "{popupClass: 'facets-input-dropdown-popup', width: 'auto'}"
[disabled] = "isDisabled"
[formControl]="control">
I expect the default value to be 'Select' in the dropdown, but not seeing that. Any documentation on formControl attribute for kendo-dropdownlist will be helpful.
Regards,
Jyothi
Is it possible to reuse an instance of kendo scheduler in an angularjs application? I have a scheduler with the following html.
<div kendo-scheduler="ctrl.scheduler" k-options="ctrl.schedulerOptions" k-rebind="ctrl.schedulerOptions"></div>
Now, a panel opens (for creating an event) with a button on the same screen, that displays the same scheduler with same events. I don't want to give it k-options again. I passed ctrl.scheduler to the panel and tried setting kendo-scheduler to an already created instance of scheduler, but it didn't work. Is there any other way? Thanks
<div kendo-scheduler="ctrl.scheduler"></div>

Is it possible to add the inline new record row at the bottom rather than the top. Is there a work around to force this behaviour?
Thanks.

With the Kendo Angular grid is there an inline command that can be placed in a <kendo-grid-column> to block or prevent the automatic string editing? It seems like the grid binding trims spaces by default and I'd like to selectively override this feature.
Hi
I wanted to know the best way to make the selected data item area scrollable inside the kendo multiselect component
I have a sample of a kendo-multiselect with lots of items selected.
I want to limit the size of the selected data items container, so i used a style of {max-height: 185px; overflow-y: scroll }
Here is my sample:
https://stackblitz.com/edit/angular-cecudd-tjndfp
When I try and put my cursor in the kendo searchbar input element, the available data items popup covers the input element
There has to be a better way to do this, but i could not find any height property on kendo-multiselect
Thanks
Child elements within the appendTo container I specify are blocking (displaying in front of) my notifications.
How can I make the notifications always appear in front of content from child containers?