namti
namti
I have spotted the bug. The first row which is generated by default always returns an array with object keys and values in it.  When setState in react, the...
For the temporary solution, I use a random `key` change to re-render the component manually. ```javascript import randomid from 'randomid'; ... const [ editable, setEditable ] = useState(true); const [...
> Occurs on OnePlus8Pro and Nexus 5X devices. Errors are sent to the crashlytics on the production environment > > Device OnePlus8Pro: > > ``` > Fatal Exception: java.lang.UnsatisfiedLinkError: couldn't...
> @cesosag That's right. Nowadays, I use the `formReady` combined with `React.useRef()`, and programmatically I run validation `checkValidity(...)` and form submission `submit()`. Hi, @devcovato I have tried using `formReady` with...
I figured it out. ```javascript constructor(){ this.formRef = React.createRef(); } checkValidity(){ this.formRef.checkValidity(this.formRef.submission, true); } ``` ```jsx Validate ```
Same problem `"@dnd-kit/react": "^0.0.10"` My solution: ```tsx import { DragDropProvider } from '@dnd-kit/react'; ... type TDragEndEvent = React.ComponentProps['onDragEnd']; const handleDragEnd = (e => { console.log(e.operation.position.current); }) as TDragEndEvent; ... ......
I have the same question. In my case, I need to add my custom rules. ```javascript Formio.Rules.addRule(‘fullname’, CustomClass); ``` The component validation says `Validator for "fullname" is not defined` Any...
Hi @CaptainGlac1er , can you please check if the bug has been fixed? I am using the latest version `@formio/js@^5.1.2` `@formio/react@^6.0.1` but the issue still occurs. https://github.com/user-attachments/assets/7aaa29e4-7d8e-4300-b35e-988ec181a1fb