grid no theme mixins.jpg
At the end of the day, want a new 'UI' for some of my grid, where the variable $grid-row-cell-line-height will have a different value.
grid no theme mixins.jpg
At the end of the day, want a new 'UI' for some of my grid, where the variable $grid-row-cell-line-height will have a different value.
Does anybody know the answer?
Christian
Here is how you can write your own mixins.
@include extjs-panel-ui(
$ui: 'your-panel-name',
$ui-border-color: silver,
$ui-header-color: #505050
);
You need to write this into .scss files. like \sass\src\view\yourViewName\yourViewName.scss
Please follow the doc to get all the properties you want. http://docs.sencha.com/extjs/6.2.1/c...extjs-panel-ui
And for using this into your code. You just need to set the ui property of your grid. e.g. ui: 'your-mixin-name'
Bumping this because I'm also wondering the same. I'd like to have a custom component ui for some grids. Does anyone know how to do this?