Hi I'm having difficulty in implementing data-attribute in autocomplete suggestion items.
The problem is i need more info in of the selected suggestion, not just the ID.
The code below works but it doesn't solve the problem because the data attributes were set in the li's children element.
How do i add custom data-attribute to HTMLLIElement? TIA
const itemRender = (li: React.ReactElement<HTMLLIElement>, itemProps: ListItemProps) => {
const itemChildren = (
<div className="autocomplete-suggestion"
data-employeeid={`${itemProps.dataItem.memberInfo.employeeID}`}
onClick={ (e) => e.preventDefault()}
>
{li.props.children}
</div>
);
return cloneElement(li, li.props , itemChildren);
};
Hi,
ist there any example where GanttCellProps is used.
Thank you, Matjaz Reberc
I am implementing a TimelineView similar to this: https://stackblitz.com/edit/react-asermz?file=app/main.jsx
One oddity I've noticed is the gap that appears after ever event.
I can see where it might be useful in some of the other Scheduling views to give a better separation between events, however in the Timeline view it gives the appearance that an event is ending earlier than it really is.
Is there any workaround that might accomplish what I'm looking for?
if I install latest verson
npm install --save @progress/kendo-theme-default
the below error is displayed
./node_modules/@progress/kendo-theme-default/dist/all.css (./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??postcss!./node_modules/@progress/kendo-theme-default/dist/all.css)
ParserError: Expected closing parenthesis at line: 1, column 5
if I install the verson
npm install --save @progress/kendo-theme-default@4.8.0
then some componets like input, dropdown and indicators etc styles are not applied
if I Run
npm install --save @progress/kendo-theme-default
it shows below error
./node_modules/@progress/kendo-theme-default/dist/all.css (./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??postcss!./node_modules/@progress/kendo-theme-default/dist/all.css)
ParserError: Expected closing parenthesis at line: 1, column 5
if I Run below command
npm install --save @progress/kendo-theme-default@4.8.0
Some components like input and dropdown,badges components style are not applied
I'm setting the filter of a col with blank (""), null, and real values programmatically. I also want to use the checkbox filter so that when the user filters out the nulls and "", they can further filter down the real values. But when you set the filter programmatically, the null and "" values are selected in the checkbox filter (incorrect) while the grid itself filtered them out (correct).
If I change the checkbox filter to take in the new filtered data, it still shows "2 values selected" even though we're not technically selecting null and "" (I understand they're still being used as "values" in the filter object itself).
My problem lies with the fact that the values are "selected", which requires the user to need to manually de-select these two options to further filter down the filtered data.
Any ideas/workarounds for this edge-case/niche situation?
How to implement data binding by index.
<Column field="parameters.values[2].value" title="3" />
Data:
{
{
}, {
}, {
}]
]
}
]
I want to change the background color of DateInput component, but it does not recognize any style I'm applying.
<DateInput style={{ backgroundColor: 'red' }}></DateInput>