Create & create another doesnt keep url variables
I have a page that uses the url something like this:
example.com/admin/postings/create?cycle_id=1 and when the page first loads it properly feels in the cycle_id. the user fills out the form and then hits Create & Create Another however when the page loads again, cycle_id is blank even though its still in the url?
Is this a bug? Am I doing something wrong?Solution:Jump to solution
Oh it looks like your supposed to define what data to perserve when using Create Another, but it feels weird when when I only want this data to be preserved when it exists in the url already... I feel like it being in the URL should be an indicator that I want it preserved.
3 Replies
Solution
Oh it looks like your supposed to define what data to perserve when using Create Another, but it feels weird when when I only want this data to be preserved when it exists in the url already... I feel like it being in the URL should be an indicator that I want it preserved.
Yes that does solve the issue kind of, but it felt weird when it took the cycle_id from the url on the first load, but just ignores it going forward.
I sort of get it, but it does feel weird to basically have to duplicate that in two places.