Files
P42_UI/app/assets/json/tests/tips-n-tricks.txt
T
2025-08-27 07:03:09 +00:00

2 lines
210 B
Plaintext

Converting SELECT OPTIONS to meta (json) from console:
Array.prototype.slice.call(document.querySelectorAll('[name="ref2selector"] option')).map(o => `{"id": "${o.value}", "label": "${o.innerHTML}"}`).join(",")