Describe the bug
When defining a custom editor Template for the Scheduler(wrapper) component we define the value passed to the editable-template property as follows:
editorTemplate(data: any): any {
return {
template: EditEventTemplateComponent,
templateArgs: Object.assign({}, data, {
parentComponent: schedulerRef.value,
}),
};
}
With the above definition, in the EditEventTemplateComponent, the templateArgs cannot be accessed inside the setup function, when the Composition API is used. In the mean time, the templateArgs are accessible in the template of the EditEventTemplateComponent.
To Reproduce
Expected behavior
The templateArgs should be accessible inside the setup function when using Composition API.
Hi,
I need to fill and AcroForm PDF. I want to load the pdf and fill it from input fields in kendo vue, when I am done I need to send the pdf back to server or download/print the filled out pdf.
It will be a nice feature if the Native Grid can support a row selection through the keyboard.
Example scenario:
Targeted result: With the press of an arrow button, the row above or below gets selected
Here is a sample project that demonstrates an implementation similar to the targeted one.
The Kendo UI for Vue Scheduler Wrapper doesn't support year view which is available in the jQuery suite.
To reproduce the issue follow the below steps:
Expected behavior
The "Year" view should be available in the Kendo UI for Vue Scheduler Wrapper
The Native NumericTextBox doesn't have the 'k-state-focused' class applied to it, once the component is focused.
For comparison, the Angular and React versions of the same component get this class applied.
React: https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox/
Angular: https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/
Currently in Vue we don't provide the ability to share with the customers the source code before the compilation but just the already compiled code.
We need to provide the ability to fork the repository and build components from the Vue repository similarly to the way it is done in Angular and React.
Currently, Kendo UI for Vue suite provides export to Excel through the kendo-vue-excel-export package. The Excel export is a nice feature but the CSV export is another functionality that is often used.
Any roadmap on creating the dock layout like this? I found the similar function for Telerik WPF component
Hi,
Please consider adding a better, native, way to handle the case as described in my post here.
<chart :title-text="'Gross domestic product growth /GDP annual %/'"
:legend-position="'bottom'"
:series-defaults-type="'area'"
:category-axis-categories="categoryAxisData"
:category-axis-major-grid-lines-visible="false"
:category-axis-labels-rotation="'auto'"
:value-axis-labels-format="'{0}%'"
:value-axis-line-visible="false"
:value-axis-axis-crossing-value="-10"
:tooltip-visible="true"
:tooltip-format="'{0}%'"
:tooltip-template="tooltipTemplate"
:theme="'sass'">
<chart-series-item :name="'India'"
:data="indiaData"
:line-style="'smooth'">
</chart-series-item>
<chart-series-item :name="'World'"
:data="worldData"
:line-style="'smooth'">
</chart-series-item>
<chart-series-item :name="'Haiti'"
:data="haitiData"
:line-style="'smooth'">
</chart-series-item>
</chart>
When using the ChartSeriesItem tags to define the data in the Chart component the following error appears in the console once the Vue project is started.
<chart-series-item :name="'India'"
:data="indiaData"
:line-style="'smooth'">
</chart-series-item>
<chart-series-item :name="'World'"
:data="worldData"
:line-style="'smooth'">
</chart-series-item>
<chart-series-item :name="'Haiti'"
:data="haitiData"
:line-style="'smooth'">
</chart-series-item>
Using a definition like the above, we should be able to define Chart's data with no issues.
Hi. I would like to share my experience and thought of Kendo for Vue.
I still like and am using Kendo for Vue but here is my feedback :)
I reviewed the Kendo Vue version and made a purchase.
However, as a result of evaluating, there are some areas that are a bit disappointing.
It seemed that there were most of the templates that could be used in jQuery.
Checking with the Vue version, most of the examples and event handling are not written, and there are much information that I have to go and check with jQuery version.
If it is enough description and information about Direct code that can use examples and event handling in Vue version
in detail on the site, it would be much easier to use.
Thank you.
When you sort a column in the spreadsheet, enter data, and then trigger the data source's sync method, the data source will send incorrect data to it's transport function. It acts as if you entered data and the columns haven't been sorted yet.
The data source should take into account column sorting for keeping track of changes.
Apologies if I have misunderstood how the data source is suppose to work.
Thanks
When using native vue gird component often have to open modal windows to show details usually when a particular cell in the grid is clicked and do show modal windows have to use non-native <kendo-window> inside a vue component not happy with mixing jquery based wrappers inside a vue component and this is not ideal. I have explored using native vue popup component but it's not up there to offer what widows component is offering.
Please can a native vue component be developed that we in KendoWindow implementation?
Also, I did not find any example, where a kendo grid component is utilising a window component to open a modal window to show another detailed view of a selected cell from a gird (see an example UI of a grid).
Kind regards
Hammy Babar
Hi Team,
Kindly Add "focused date" feature in kendo wrapper datepicker controls in vue.js
Thanks in advance !
Stackblitz example.
The Spreadsheet options are logged in the console in the mounted function. Note that pdf.proxyURL and excel.proxyURL have no values.