top of page
Writer's pictureUniversal Web

COMO AUTOCOMPLETAR FORMULARIO

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') }); }) });



 

Gracias por ver el vídeo! #tutorial #velo #wix #español

40 views2 comments

Recent Posts

See All

2 Comments


Unknown member
Feb 06, 2023

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

Like

Daphne Gara
Daphne Gara
Feb 05, 2023

Hola!


Una pregunta y como lo hago en la misma pagina dinámica sin LightBox?

Like
bottom of page