
Hi!
I have a problem with the grid selection feature. When I select multiple rows, and I have subscribed to the @change event on the Kendo Vue Grid, the event returns the proper row keys. But when i deselect one of the rows, an empty array is returned, while there are still rows selected (minus the one I have just deselected). The behaviour I would expect is for the event to return al currently selected rows, not an empty array. Does anyone have a solution to this? I need the information to bind to another component. Any help would be greatly appreciated! Below
     <kendo-grid      id="grid"      ref="gridRef"      :data-source="dataSource"      :columns="columns"      :resizable="resizable"      :filterable="filterable"      @change="onChangeSelection($event)">    </kendo-grid>
// Event HandleronChangeSelection(event: any) {    console.log(event.sender.selectedKeyNames()); //Returns '[]' instead of [1, 2, 3 ...] when there are stil rows selected
    this.selectedKeys = event.sender.selectedKeyNames();
 }

hi I am the user of kendo-uploader
when I open the kendo-window, my fileUpload have to Keep some files what I can remove, so I use a Initailfile Option like the Code of below
$("#fileUpload").kendoUpload({
        async: {
          saveUrl: "save",
          removeUrl: "remove",
          autoUpload: false,
          removeVerb: "DELETE",
        },
        remove: onRemove,
        files: this.mUploadFiles
      });
but I make a Problem because when I press the X button ,It works remove process immediately but I want to use my Custom remove process.
How can I use my Custom remove Process . Please help me to solve the problem

Hi
I have a custom filter template for a column and it works fine. I would like to hide the filter window as soon as the user clicks the custom "Filter" or "Reset" button. The window automatically hides when we click anywhere else.
How can I close the window grammatically?

Hi,
i've gone through this Sandbox example and it works perfectly. But how to drag and drop a text/list item to edit an existing event. How we can do that with onDataBound
Thanks!
Hi !
I'm using the kendo editor in the Vue environment.
I want to create a Kendo editor Custom tool using the following template.
I would like to create a Kendo editor custom tool for file upload using the template below. The internal logic is in place and we just want to see an example of creating a custom tool with a template.
--
 <input class="hide_file" type="file" @change="doUploadInput($event.target)"
            @drop="doUploadInput($event.target)" multiple>
          </input>
--
This is well enough in the official documentation but I would like to see a more detailed example.
thank you. have a good day
: )

Hi I'm usiong kendo editor and custom tools.
I have succeeded in creating a custom tool and attaching a method, but I wanted to put a fontawsome image in the tool,
so I tried following the guide below, but it doesn't work like the attached photo. Ask for help. Thank you.
Guide link :
http://dojo.telerik.com/AWUlef/6
 .k-editor .k-i-my-tool:before
  {
      font-family: FontAwesome;
      content: "\f0c7 ";
      font-size:16px;
  }

hi I am the user of Kendo-editor
I attach the kendo-editor on kendo-window
but when I make a Table I tried to resize but It does not work. I know that Other user already use this function.
Please give me an answer. also this issue is make problem in Chrome ,
when I Click or Drag the Table ,Chrome gives a message like this
Uncaught TypeError: l.push is not a function
    at init.bind (kendo.all.js:134)
    at init.bind (kendo.all.js:117)
    at init._bindToResizeHandlesEvents (kendo.all.js:84051)
    at init._initResizeHandles (kendo.all.js:84023)
    at init.showResizeHandles (kendo.all.js:84003)
    at init._showTableResizeHandles (kendo.all.js:72692)
    at HTMLTableElement.<anonymous> (kendo.all.js:84103)
    at HTMLBodyElement.dispatch (jquery-2.2.4.min.js:3)
    at HTMLBodyElement.r.handle (jquery-2.2.4.min.js:3)
Hello.
I'm using Kendo-editor
I have a question about dragging and dropping images in editor
In some demo sites provided by Kendo, images can be inserted by dragging and dropping without having to precisely position the cursor
in the contetns of the editor. Just put it inside the editor area, the image goes in.
Even when there are no posts in the editor area
like this : https://www.telerik.com/kendo-vue-ui
However, when used in my project And in some other examples that Kendo provides
when there are no posts in the editor area if i don't drag the cursor to the correct cursor in the content,
it's like dropping an image in the browser.
like : https://www.telerik.com/kendo-vue-ui/components/editor/
I think this is inconvenient for the user.
I'm wondering what's the difference between the editor on the demo site that doesn't happen and the editor I'm using.
Attach the photo at the time of error occurrence.
The version I use 2019.3.917
thank you. Have a nice day
