Hello,
Please refer to this stack blitz demo based on Customization of Editot
Need to open below custom Scheduler Form with default Recurrence Rule UI when user clicks on the button "New Schedule" .
When trying to add a recurrence Rule component, it gives the below error. (Please check commented code into custom-form-editor.tsx file
Good evening,
Is there a way to keep a certain filter expression hidden ("Is not null") while still applying it on External filter?
Please help, thanks!
Jason
Messages get overlapp as seen below. I am using KendoReact and React bootstrap. Any solution to fix this please?
Greetings,
I'm having an issue with the Date filter when the grid contains null date values.
I'm currently using the following operators for the Date filter:
{ text: 'grid.filterAfterOperator', operator: 'gt' },
{ text: 'grid.filterBeforeOperator', operator: 'lt' },
{ text: 'grid.filterIsNullOperator', operator: 'isnull' },
{ text: 'grid.filterIsNotNullOperator', operator: 'isnotnull' }
The "Is null/Is not null" operators are working but the "Is before/Is after" operators are not filtering out the null values.
Is there a way to fix this? Thanks!
Jason
export const User = () => {
const [existingUser, setExistingUser] = React.useState({});
const handleUserResponse = (result: any) => {
if (result.data) {
setExistingUser(result.data[0]);
}
};
const UserEmailInput = (props: FieldRenderProps) => {
React.useEffect(() => {
console.log("UserEmailInput Re-Render");
}, []);
const [value, setValue] = React.useState<string>('');
const emailOnBlur = () => {
fetch(...).then((response: any) => {
console.log(response);
setExistingUser(response.data[0]);
};
};
return (
<FormMaskedTextBox
{...props}
onChange={(e: any) => { setValue(e.value); }}
onBlur={emailOnBlur}
/>
);
};
return (
<div style={{ marginTop: '5px', marginBottom: '5px' }}>
<Card>
//Form component lives in parent component.
<Field
name={"email"}
label={"E-mail:"}
component={UserEmailInput}
validator={[
requiredValidator("E-mail"),
lengthValidator("E-mail", 255),
regexValidator("E-mail", emailRegex)
]}
id="emailID"
/>
</CardBody>
</Card>
</div>
);
};
Hi, there are three issue in my demo, please check. and if you find any message please give me replay, Thank a lot.
1. All rows become expanded by default.
2. Click the minus sign. The row detail data is not updated.
3. Group-level expansion does not work properly
Hi Team,
I am trying to implement aggregate in my grid which is written in class component.
I have to display aggregate both at top and bottom(in corresponding column) while doing grouping. I am unable to get "groupFooter as rowtype option while writing cellRender function.
Const cellRender = (tdElement, cellProps) =>{
if(cellProps.rowType==="groupFooter"){
}
}
The error displayed is
ERROR in ./node_modules/@progress/kendo-react-popup/index.mjs
I followed these instructions from https://www.telerik.com/kendo-react-ui/components/getting-started/
npx create-kendoreact-app
Below is my configuration
? What is the name of your project? demoapp
? Do you want to use TypeScript? No
? Do you want to use SASS? Yes
? Which Kendo UI Theme do you want to use?
❯ default
bootstrap
material
after this i entered the directory and performed
npm i npm run start
I get errors like
ERROR in './node_modules/@progress/kendo-react-layout/...'
This is a NEW Project with React 18 and Node 18.15