Greetings!
I am using the Kendo-React data grid for live updates. However, I am facing an issue where duplications of rows occur inside the grid when trying to reorder a row by drag and drop. It works fine for static data but doesn't work for live updates. Can someone help me understand why this is happening?
I just used the same code mentioned in the below documentation.
https://www.telerik.com/kendo-react-ui/components/grid/rows/row-reordering/
Any assistance would be appreciated.
Regards,
Fareed Alam
Problems with the "Field > Combobox" component when passing all the data, label and component properties to it, no problem, but when I add "textField" the combobox gives me a list of [object Object]. Maybe I'm passing the properties wrong, could you give me some clue?
I have the list of "moneda" that is passed in data through the API.
In the attached image you can see that it loads the list with the value of 'CLP' which is correct and you see the [Object object] list. Greetings
const [currency, setCurrency] = useState([]);
useEffect(() => {
(async() => {
const currency = await getDefiCurrencies();
setCurrency(currency);
})();
}, []);
---------------Edit Form --------------------------
<Field
id={'CodiMone'}
name={'CodiMone'}
label={'Currency'}
component={FormComboBox}
// textField={'CodiMone'}
data={currency}
/>
Hi there,
Referring to the Editor and Editortool @progress/kendo-react-editor,
How can I use Print tools with multiple orientation. For Example, Potrait orientation for page 1 and Landscape orientation for page 2.
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>
);
};