Hello.
I have a Repeater connected to dataset. Each window has a button connected to database. Is there a way to change one specific repeater button, have it linked to a url and keep the rest linked to database?
Canât change design but can change link
You can manually write the ID of the button you want to connect to the ârepeaterâ dataset and change its link, or you can retrieve it from the collection. If you pull it from the collection, you can access the ID by writing result.items[row index]._id, where the row is at the specified sequence number.
// First solution
$w("#repeater1").onItemReady( ($item, itemData, index) => {
//27789f76-82ae-4b7f-9b0c-d3d0e09cd9b2 is id of the row
if(itemData._id === "27789f76-82ae-4b7f-9b0c-d3d0e09cd9b2"){
$item("#button1").link = "https://www.example.com/";
}
});
// Second solution
import wixData from 'wix-data';
wixData.query("myCollection")
.find()
.then((result) => {
let userId = result.items[2]._id
$w("#repeater1").onItemReady( ($item, itemData, index) => {
if(itemData._id === userId){
$item("#button1").link = "https://www.example.com/";
}
});
})
.catch((err) => {
console.log(err);
});
1 Like
is âmyCollectionâ the name of the dataset?