When pasting a value that contains letters and numbers, the Native NumericTextBox removes the letters but then clears the entire value when you defocus the input. In this Stackblitz project you can see this behavior. The problem occurs with or without decimals or different formats.
Proposed solution
When the NumicTextBox removes the letters keep the value on defocus when it only contains numbers.
Steps to reproduce
Hello,
I want to integrate the Kendo UI Grid to my project (composition api + TypeScript).
In specific I need help to undertand al least one integration feature in the grid, the filtering
I readed this documentation: https://www.telerik.com/kendo-vue-ui/components/grid/filtering/
I make the corresponding settings on my code but the filtering doesn't work.
So, do you have an example or better documenattion to undertand the integration, but using Composition API + TypeScript
Thanks in advance
Hi
I'm struggeling to find a working solution for the following problem, I need to be able to define custom templates for specific columns in the Native Grid when the grid is grouped. Somehing like the solution when the grid is not grouped using the "cell" property of GridColumnProps. I'm currently changing all wrapper components to native ones in my project, in the wrapper grid component we could just add a template property to the column definition and then return a string or function.
I need some help on how I should approach this for the Native grid. I tried the solution as stated in the docs using a named slot and the cell render prop of the grid but this renders a template for every cell and I need to be able to use a custom template for each column that requires one. But I can't seem to solve this issue completely using this approach.
Any help is appreciated,
thanks in advance!
For the NumericTextBox Wrapper Component there is the following page which allows the setting and restriction of decimals within the NumericTextBox input.
For the NumericTextBox Native Component I can only find the Formats page which doesn't tell anything about the Precision of Numbers as for the Wrapper Component.
Can I only use the format prop for this by using a custom format (generated based on different regex'es) or is the old functionality related to the decimals and restrictDecimals props also available for the Native Component?
If not, how can I dynamically set or restrict the amount of numbers and decimals within the Native Component?
Hi,
i have an nested (start_end) json array for the scheduler. The structure of the json array looks like that:
[{
TaskID: 0,
Subject: 'Breakfast with Tom',
start_end: [{
start: new Date('2019-08-10T05:30:00.000Z'),
end: new Date('2019-08-10T06:00:00.000Z')
}]
}]
How can i map with the ModelFields to get correct json data for the scheduler?
Best regards gongl
I'm getting a handful of these errors and it causes issues with automated testing/build pipelines.
Example:
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($drop-hint-arrow-size, 2) or calc($drop-hint-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div
I could fix them easily, but I'd rather leave the NPM packages as we received them. Are there plans to update the SCSS files for Kendo UI Vue to support the latest library expectations?
Hi,
I am using Kendo Grid Wrapper Component with Vue3.0 compositon API and typescript but we have encountered a problem.The problem is that when I enable scrollable virtual and set the grid height,I drag the column header cells by grouping on the grid,it causes the grid row be blocked when the grid scroll to the bottom.
Thank you very much and greetings
<body>
<div style="height:200px;">
<div id="grid"></div>
</div>
<script>
$("#grid").kendoGrid({
height:'200px',
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" },
{ productName: "Ham", category: "Food" },
{ productName: "Bread", category: "Food" }
],
scrollable:{
virtual:true
},
groupable: {
enabled: true
}
});
</script>
</body>
Hi,
I used the custom button to change the orientation property of splitter, but the modified page did not change. Is there any way to achieve it?