I noticed that when I run the following code the value produced seems to strip out all carriage returns. Is there any way to suppress this behavior?
this
.$refs.htmlEditor.kendoWidget().value()
Even in this example provided in the documentation: https://98razv.run.stackblitz.io/ from https://www.telerik.com/kendo-vue-ui/components/grid-native/selection/
When there's more than a few 100 rows of data, there is a significant lag when selecting a row from the grid. Can someone guide me into understanding why this is happening and how could it be avoided or if there's a better way of doing selection?
Thanks.
Hi Team,
The import statement on the map docs for kendo ui for vue needs an update.
On the doc page: https://www.telerik.com/kendo-vue-ui/components/map/
It lists:
import { Map,
MapMarker,
MapLayer,
MapInstaller } from '@progress/kendo-listview-vue-wrapper'
EF.
I have made a kendo grid using the following code:
<kendo-grid v-bind:data-source="getEscalations"
v-bind:sortable-mode="'multiple'"
v-bind:sortable-allow-unsort="true"
v-bind:sortable-show-indexes="true"
v-bind:height="250"
v-bind:resizable="true"
v-bind:sort="sortEscalationTable">
<kendo-grid-column field="xxx" title="XXX">
</kendo-grid-column>
<kendo-grid-column field="yyy" title="YYY">
</kendo-grid-column>
</kendo-grid>
the problem is that columns get misaligned when window is resized. I have to refresh the window to resize them again. Is there a flag or other way to keep them aligned on resize. Please take a look at the image. Thanks.
We like to use dropdown inside the grid, so we using this (https://www.telerik.com/kendo-vue-ui/components/grid/editing/#toc-setting-custom-editors) example in our project we are getting this error:
Uncaught TypeError: $(...).appendTo(...).kendoDropDownList is not a function at VueComponent.categoryDropDownEditor (git.vue?26ca:154)
Could anyone help me on this?
I am using the Diagram component in my Vue application to display a network of nodes that best resembles a tree.
The problem is that in certain cases one parent node might have 100+ children nodes on the first level. This displays in a undesired long horizontal line of all the children node similar to diagram-bad.png.
What I would need to be displayed instead is more like diagram-good.png that limits how horizontally the children are displayed.
Note: I don't need exactly whats displayed in diagram-good.png, but just something that doesn't span the children out horizontally so much.
Can anyone help me achieve this?
Hi,
That's it, i need to get the selected date as a date object, is there any way besides manually parsing the string?
Thanks...
I'm trying to configure a DataGrid with various custom editing functionality and have some issues/questions related to the attached vue file:
1. I have various columns that are editable by combobox/drop down. I would like the name/description to show in the grid but only the underlying id value be pushed to the server. The bit I can't get working is getting the name/description to show. I'm guessing it's something to do with the :template attribute but I don't know what I should put here?
2. For the date column I'd like to display using the local date/time display settings but when I would like the date pushed to the server to be in some standard format like ISO 8601. Is this possible?
3. For the multi-column comboboxes, it is possible for the user to put any value that they want in. Is there a multi-column dropdownlist type option that prevents invalid values being entered or some way to achieve this behaviour?
Hi,
i'm using the grid with paging/sorting/grouping/etc, all with the magical WebApiDataSourceRequestModelBinder and the ToDataSourceResult...
the thing is, that sometimes if the user is filtering too much information the url is not enough, so i was wondering if all that data could be send through a POST instead a GET...
i've tried configuring the datasource as POST, but i can't get the DataSourceRequest filled with the passing data...
any hint on this?
regards.