Thank you for your review! (plugin author)
Hi, I am getting this error: The plugin Realtime Input Value / element RealtimeInput threw the following error: TypeError: Cannot set properties of null (setting 'autocomplete')
at eval (PLUGIN_1716807558920x372612237897236500/Realtime-Input-Value-update--RealtimeInput-.js:3:2481)
at https://cambalache.com.co/package/run_debug_js/96e02465ea8af3d052bc73bddf9337dfe3712e9d9276d4b12e20843f9d47b0b5/xfalse/x30/run_debug.js:600:331 (please report this to the plugin author). Thank you.
Hi there!
I've looked into the error you're getting, and it's likely happening for one of these reasons:
1. The ID property isn't set in your RealtimeInput element
2. The ID in your RealtimeInput element doesn't match the ID of your input element
When either of these happens, JavaScript can't find the right element, which leads to that null error you're seeing.
To fix this, make sure you:
- Set an ID in the RealtimeInput element's properties
- Double-check that this ID matches the ID of your input element
If you're still running into issues, just let me know! (plugin author)
Hi, I am still getting "The plugin Realtime Input Value / element RealtimeInput threw the following error: TypeError: Cannot set properties of null (setting 'autocomplete')
at eval (PLUGIN_1716807558920x372612237897236500/Realtime-Input-Value-update--RealtimeInput-.js:3:2481). Both id's (in the real time input and in the input I am using to search is the same "buscador"). Thanks in advance.
Hi there,
Based on the information you shared, here are two things to double-check that could help solve the issue:
1. About the ID setup
The RealtimeInput element and the input element should have the same ID. However, if multiple elements share the same ID on the page, it may not work as expected. Please make sure each ID is unique and used only once.
2. About the input element visibility and position
If the input element is hidden, the plugin may not be able to detect it correctly, which can cause this error. Please ensure the input is visible and placed in the same group or layout level as the RealtimeInput element.
If it still doesn’t work after checking these points, feel free to send me a DM on the Bubble forum (username: tomo.hitoma.bubble) and I’ll be happy to help directly!
Thanks again! (plugin author)