Cannot type in date into TelerikDateInput if AllowCaretMode is true and the DateInput focus is in the whole input,
how to reproduce:
move focus to DateInput from previous input (whole dateInput is in focus)
Type in 01 into the DateInput, the caret will move to end, but no value filled.
This is the REPL page:
https://blazorrepl.telerik.com/GnYsHlcv54uXw7hd34
this is the form and how to reproduce:
I know about the awesome ThemeBuilder but sometime all you need is to change the accent color and some other global properties.
Thats way I ask if you are going to support CSS Vars for styling.
Bootstrap ยท The most popular HTML, CSS, and JS library in the world. (getbootstrap.com)
Blazor Grid - Popup Editing - Telerik UI for Blazor
<GridSettings>
<GridPopupEditSettings MaxWidth="600px"
MaxHeight="300px"
Class="custom-popup">
</GridPopupEditSettings>
<GridPopupEditFormSettings Orientation="@FormOrientation.Horizontal"
ButtonsLayout="FormButtonsLayout.Center"
Columns="2">
</GridPopupEditFormSettings>
</GridSettings>
FormButtonsLayout
I am using Blazor UI and have upgraded to latest version 4.4.0 also upgraded the kendo-theme-default to version 6.7.0.
Using dart sass version 1.66.1 for the build.
Not using all your components so in my vendors folder I have this imports in _index.sass.
It used to work but not after the upgrade.
@import "../../node_modules/@progress/kendo-theme-default/scss/treeview"; @import "../../node_modules/@progress/kendo-theme-default/scss/tabstrip"; @import "../../node_modules/@progress/kendo-theme-default/scss/grid"; @import "../../node_modules/@progress/kendo-theme-default/scss/button"; @import "../../node_modules/@progress/kendo-theme-default/scss/common"; @import "../../node_modules/@progress/kendo-theme-default/scss/checkbox"; @import "../../node_modules/@progress/kendo-theme-default/scss/textbox"; @import "../../node_modules/@progress/kendo-theme-default/scss/loader";
in package.json
"scripts": {
"sass": "npx sass --quiet-deps ./sass/app.scss ./wwwroot/css/app.css",
"sass:watch": "npx sass --watch --quiet-deps ./sass/app.scss ./wwwroot/css/app.css"
},
Output from build
> npx sass --quiet-deps ./sass/app.scss ./wwwroot/css/app.css Error: Can't find stylesheet to import. โท 1 โ @import "@progress/kendo-theme-core/scss/functions/index.import.scss"; โ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ โต node_modules\@progress\kendo-theme-default\scss\core\functions\index.import.scss 1:9 @import node_modules\@progress\kendo-theme-default\scss\_variables.scss 1:9 @import node_modules\@progress\kendo-theme-default\scss\core\_index.scss 4:9 @import node_modules\@progress\kendo-theme-default\scss\treeview\_index.scss 1:9 @import sass\vendors\_index.scss 2:9 @import sass\app.scss 7:9 root stylesheet
Have been wasting another hour (:
have modified the @import path in the Telerik source files
$wcag-min-contrast-ratio: 4.5 !default; // Variables @import "../_variables.scss"; //@import "@progress/kendo-theme-core/scss/index.import.scss"; @import "../../../kendo-theme-core/scss/functions/index.import.scss"; // Expose @include exports("kendo-core-styles") { @include kendo-core--styles(); }
2>EXEC: Warning DEPRECATION: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($a, $b) or calc($a / $b) More info and automated migrator: https://sass-lang.com/d/slash-div รรฒร 66 รรถรฉ @return ( $a / $b ); รรถรฉ ^^^^^^^ รรฒร node_modules\@progress\kendo-theme-core\scss\functions\_math.import.scss 66:15 k-math-div() node_modules\@progress\kendo-theme-default\scss\_variables.scss 285:21 @import node_modules\@progress\kendo-theme-default\scss\core\_index.scss 4:9 @import node_modules\@progress\kendo-theme-default\scss\treeview\_index.scss 1:9 @import sass\vendors\_index.scss 4:9 @import sass\app.scss 7:9 root stylesheet 2>EXEC: Error : Undefined mixin. รรฒร 10 รรถรฉ รรถรฎ @include exports("kendo-core-styles") { 11 รรถรฉ รรถรฉ @include kendo-core--styles(); 12 รรถรฉ รรถรถ } รรฒร node_modules\@progress\kendo-theme-default\scss\core\_index.scss 10:1 @import node_modules\@progress\kendo-theme-default\scss\treeview\_index.scss 1:9 @import sass\vendors\_index.scss 4:9 @import sass\app.scss 7:9 root stylesheet 2>------- Finished building project: Zeus.Client. Succeeded: False. Errors: 1. Warnings: 1 Build completed in 00:00:02.138
I use a grid with PageSizes settings and OnRead event to load data.
When i change the selected page size combobox value, the grid does not reload. It update only the pager, but grid does not update the records.
You can reproduce with this code:
https://blazorrepl.telerik.com/mHkjEoOV17OVmZ9u30
How to solve?
Thanks
Hi there,
I knew I must have missed something about this error. I'm trying to using SvgIcon in the grid button but it complained about ""The name 'SvgIcon' does not exist in the current context". Please advise.
Here is the demo i'm following:
https://demos.telerik.com/blazor-ui/grid/editing-inline
Thanks,
Bob