Using the code from this doc I created this stackblitz and as you can see the task height only shows one row, I tried setting the height on the movie-template class but that did nothing.
How do make the multi-line template show all data?
Hi,
When using this example please see the attached video where the order by does not behave correctly.
After creation, tasks 'aaa' and 'bbb' have sequential order values, which is correct. After dragging 'bbb' above 'aaa' then both have the same order valule. It appears to be a bug?
I am using custom screens and UI to interact with the scheduler so I am overriding the default behviour eg. fFor the 'edit' event I call e.preventDefault() and then show my screen to do whatever is necessary.
I can't figure out how to do this for 'remove' though as it seems that the remove event only fires after the built-in "do you want to delete the event" prompt is shown and ok is clicked.
I don't want to show any built-in UI but want to show my own delete confirmation and then do the delete api call manually - how is this possible?
Hi all
I use a kendo grid to display some datas (with VUE JS 3 ) . This one is pageable.
I use the event "page" called when I change the page. I try to call test function from this event but I have the error "this.test" is not a function"...
And in the event "this" is the kendoGrid... How can I access to the function test ?
thanks you !
Hi, this is my problem.
I use the confirm function in kendo dropdownlist to make sure the user want to change the value or not.
When the user choose "cancel", that means he doesn't want to change the old value.
However the value in the dropdownlist UI shows the changed NEW value.
Here is the example: https://stackblitz.com/edit/dropdownlist-confirm?file=src/main.vue
Although the console shows "CANCEL", but the UI still shows the changed new value.
How can I fix this ? Thank you in advance!!!
I have some grids that have a date/time column. The default equality operators for the filter match both the date and time. I am trying to customize the equality operator (or add a new operator) that ignores the time and only compares the date. Using a custom operator works the first time I select the operator. When I go back to the filter menu after setting it the first time, the dropdown has no operator selected and I changing the value again doesn't work until after I select equals again.
How can I have the equals operator remain selected or add a new operator?
If this isn't supported, are there any other ways I can accomplish the same thing? I want to display both the date and time, but have equals only filter on the date.
Here is some example code: https://stackblitz.com/edit/custom-filter-only?file=src/main.vue
Hi,
i would like to have undo and redo buttons in vue text Editor , I couldn't see it here in where I'm typing question now.
The undo () and redo (
) icons--> like these or buttons anything would work.
could you please suggest what could be done to add undo and redo buttons.
appreciate your help,
Thank you
I need to open the Master-detail template not only on the "+" or "arrow" icon but on another button on the screen.
In other words, How can we invoke the "expandChange" method from other element instead of <Grid @expandchange="expandChange" > to expand/collapse the detail template?
Template: I want to expand the detail template with the click of the Edit button.
<Grid
:data-items="sampleData"
:columns="columns"
:detail="cellTemplate"
:expand-field="'expanded'"
@expandchange="expandChange"
>
<template v-slot:actionColumn>
<td>
<div class="d-flex align-items-center tbl-actions">
<button
type="button"
title="Edit"
@click="expandChange"
class="btn btn-icon d-flex align-items-center"
>
<span class="icon icon-edit"></span>
</button>
<button
type="button"
title="Add to Cart"
class="btn btn-icon d-flex align-items-center"
>
<span class="icon icon-cart"></span>
</button>
</div>
</td>
</template>
<template v-slot:expandTemplate> Detail template goes here.... <template>
Method:
expandChange: function (event: any) {
event.dataItem[event.target.$props.expandField] = event.value;
if (event.value) {
event.event.target.parentNode.parentNode.classList.add("expanded-row");
} else {
event.event.target.parentNode.parentNode.classList.remove(
"expanded-row"
);
}
},
Is there a way to disable just the checkbox in the dropdowntree? I need to be able to select and drill down in each node, but also need some checkboxes to be disabled. So a node could be disabled, but I would still like to drill down and select items inside that node that are enabled.
"myDataSource" has a "isEnabled" property that is set to true or false.
How can I disable just the checkbox in the control below
<dropdowntree
:data-source="myDataSource"
tagMode="single"
:autoClose=false
:checkboxes-check-children="true"
:check-all="true"
dataTextField="text"
dataValueField="id"
style="width: 100%;"
height="auto"
>
</dropdowntree>
Hi all,
Is it possible to attach a native grid to a kendo datasource component?
Thanks
Michele