Hi,
is there a way to give the kendo-theme-default/scss/all a parent class?
so in Scss you can import the scss files into a class and that becomes the parent class of that entire stylesheet, But when i try to do the same i get error during build of scss file.
for eg.
.parentClass{
@import "bootstrap.scss'
}
will result in all the classes of bootstrap with prefix .parentClass
if i do the same with all.scss i get the following.
SassError: ".parentClass.k-button[disabled]" failed to @extend "%disabled".
The selector "%disabled" was not found.
Use "@extend %disabled !optional" if the extend should be able to fail.
on line 34 of node_modules/@progress/kendo-theme-default/scss/button/_layout.scss
>> @extend %disabled;
Any Fix for this?
Thanks
Hi,
I'm trying to setup a grid that has the combination of checkbox selection, grouping and filtering. I'm struggling to get the grouping working with multiple levels. I can group the date, however expanding or collapsing a section will expand or collapse all sections. I'm wondering if there is a way to pass in a unique ID so I can expand or collapse only the corresponding section...
https://stackblitz.com/edit/grid-grouping-selection?embed=1&file=app/main.jsx
Thanks,
Peter
Is there a filter menu trigger function for?
I try to use onExpandChange but not calls it.
I need a function that trigger when filter menu open and close.
onCloseMenu function works only when I click Clear button but I need a function when filter menu show and hide
Hi Team,
I am getting below error when using TabStripTab inside TabStrip component.
<div>
<TabStrip
selected={this.state.selected}
onSelect={this.handleSelect}
tabPosition={this.state.position}>
<TabStripTab title="Tab 1">
This is test
</TabStripTab>
<TabStripTab title="Tab 2">
This is test2
</TabStripTab>
</TabStrip>
</div>
JSX element type 'TabStripTab' is not a constructor function for JSX elements.
The types returned by 'render()' are incompatible between these types.
Type 'ReactNode' is not assignable to type 'false | Element'.
Type 'string' is not assignable to type 'false | Element'.
I checked in the documentation and googled it also but do not find any specific solution for this.
Please let me know if aI am missing any thing here.
Regards,
Sanjay
Hi, I have a grid with a custom column. The data for the column is an array of object and I render them as a button which enables me to click and naviagate based on the value I clicked. However, filter doesnt seem to work here. Please advice.
https://stackblitz.com/edit/react-pbcysg?file=SampleGrid.jsx
Line 813 is the place where the function to render a button is being called.
Hello!
How can i style a ColumnMenu control?
I dont want create a custm ColumnMenu control, just changed colors of element/
Could you get the styles names of ColumnMenu control or some exapmples of styling?
Thank you!
How do you write this in hooks style?
https://www.telerik.com/kendo-react-ui/components/editor/content/
using class references defies the point of hooks.
Selecting date from table filter popup causes to scroll left the table as you can see in my sample.
There is a "First Date" column on my table at the end of right side.
When you follow these steps, you will see the table suddenly scrolls left and DatePicker closes.
When I remove the method 'GridPageChange' on line 148, table still scrolls to left but DatePicker does not close and I can select date.
If you realize my DatePicker has a time picker. When I select a day from calender, time picker scrolls to current time. I think it triggers the table scroll.
How can I prevent this happen?
https://stackblitz.com/edit/react-tukxso?embed=1&file=app/main.jsx