#Repeater #Text #Dropdown #RepeaterInput #InlineActions #GlobalActions

Demonstrates
Inline and global actions on the Repeater contents.
Links for this example
Open the Example template in the Wix Editor
About this example
Demonstrates using input components in a Repeater. The Inline actions tab shows how to do inline actions using buttons embedded in the repeater items. The Global Actions tab has buttons on the page outside of the Repeater that apply actions to the selected Repeater items.
Great Job!
let it= $item('#dataset1').getCurrentItem(); console.log(it);
it always shows first row,how can i get different rows whenever context changes
How do I open the example? I get a 404 with that url.
Hey Yisrael
The example isn't available anymore?
Hello Yisrael,
Thanks for the example. Is this working with date pickers as well?
If not can you recommend a good work around. I guess you could make some populated selection fields...
Also, if not is this in the works?
Many thanks, talk to you soon.
Kind regards,
Chris
Hey Yisrael, Thanks for sharing this awesome stuff I have a request for you
Can we use $w('#dataset').remove() when the Dataset is write mode only
i am building a form with a multiple product can be added/removed by the user
I am trying to do using dataset
There will be 2 dataset both are in write mode
Main dataset and Product dataset
On the product dataset there is a reference field for the main dataset which will be added using setField value
this product dataset will be connected to a repeater
we can add a new product form (container) using $w('#dataset').new()
but we can't remove CONTAINER unless DATASET read and write mode
I tried filtering the product dataset with the id of main dataset
but we can't get the id using $w('#dataset1').getCurrentItem()._id; since the dataset is write only mode
(we can only get the id of the dataset inside the repeater (itemData._id) still can't filter the dataset write only mode)
currently i am using full code to add/remove the repeater it will be much easier if we can do this just by connecting the dataset