Hey! NUEVO VIDEO. En este video, aprenderás como autocompletar un formulario usando Velo Code. No olvides subscribirte y comentar alguna pregunta!
CODIGO PARA CADA LIGHTBOX Y PÁGINA DINÁMICA
Lightbox code import wixWindow from 'wix-window'; $w.onReady(function () { let receivedData = wixWindow.lightbox.getContext(); console.log('data', receivedData); $w("#productname").text = receivedData.productname; $w("#dataset1").onBeforeSave(() => { $w("#dataset1").setFieldValue("product", $w("#productname").text); return true; }) });
Dynamic page code import wixWindow from 'wix-window'; $w.onReady(function () { let itemObj = $w("#dynamicDataset").getCurrentItem(); $w("#btnQuote").onClick(() => { wixWindow.openLightbox("quote", { "productname": itemObj.title, }) .then((data) => { console.log('enviado') }); }) });
Hola Daphne Sería algo así $w.onReady(function(){
let itemObj=$w("#dynamicDataset").getCurrentItem(); //obtienes los datos del item
$w("#btnQuote").onClick(()=>{ //función para botón
$w("#productname").text=itemObj.productname;//cambiar un texto $w("#inputSlug").value=itemObj.slug;//cambiar un valor de un input
})
}); Espero que te sirva. Esto es para una página dinámica, recuerda que 'dynamicDataset' es el dataset. Gracias por ver los vídeos! Saludos
Hola!
Una pregunta y como lo hago en la misma pagina dinámica sin LightBox?