I have a order form where i want to add a “product” to a state before saving it to database. Manage to add it however how to i solve the problem of not being able to add same object into the list?
Initially i wanted to work with thing but having an issue with other info i wanted to include once object has been finalize, as u can see in my first picture. Thus i wanted to use state as a method of not creating anything in database before finalizing order.
I have tried your ways but its more convoluted than i thought.
Reason being - Order and Product is 2 different “thing”. The order might store multiple product.
Reason i choose state is because of building an ID to tie with each Order.
1 order might contain 1 ID - multiple product selection and a sum of total price (with customer details). Thus my logic is, you shouldnt create a thing first but rather view it before initiating creation of Order.
The other option is potentially like your concept of quantity is whenever the button of add is initiated - keep adding the selected item (something i failed to execute as well).
Probably i need an idea more than a solution at this point.
So i was trying to create json and send that object to Custom state. But as json putput is on text format i’m not able to assign it. Do you any idea about how to implement this ?
@TipLister
Thank you for quick reply. I want the way where we don’t need to create record in bubble’s database.
without creating record can we achieve it? And what is the requirement of listshifter plugin over here?