-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Core] add dynamic list with ajax requests #4361
base: master
Are you sure you want to change the base?
[Core] add dynamic list with ajax requests #4361
Conversation
yes i can see how this is useful. but that javascript inside html tag is not good. can you move it out to the .js file we already have? the rest im unsure of. will take a closer look |
Hi, I wasn't sure about how to add a js file inside the project. If you can guide how to do that? Thanks! |
i'd prefer you add a function to the already existing file but, using that thirdparty CORS proxy is not good. also did you test if the config proxy works? last time i tried, i could not get proxy to work. ideally the ajax should go towards rssbridge. not relying on thirdparty. |
Hi, Yes I will do that for the function and retest. I agree with you, 3rd party proxy is not good at all. Yes I tested it and proxy config works! Do you know an endpoint that can do the same in RSS-Bridge or we have to create a new one? |
to do this properly i think we should add a new function to i think it be better if I implement this. but still feel free to try yourself and create PR. i dont have time now but in the next few weeks i can give it a go |
Hi, Sounds like a plan 😉! Sur Xmax is coming and we will be all busy 🎄 🎅 . I will wait your new endpoint and update this PR accordingly once done. Thanks |
Hi!
The goal of this PR here is to be able to have dynamic lists for parameters.
It introduces a new type for parameters: dynamic_list.
This feature is to answer to some bridges that have big select / options in parameters.
I'm using datalist tag described here: https://www.w3schools.com/tags/tag_datalist.asp).
An example of usage can be seen here: #4362 and #4363
Kind regards