Actually, I just found another instance where I need to force a mandatory message. In Firefox, when a user enters an invalid date with the date picker element, the mandatory message is not firing. However, it does fire in other browsers. So, I...
Actually, I just found another instance where I need to force a mandatory message. In Firefox, when a user enters an invalid date with the date picker element, the mandatory message is not firing. However, it does fire in other browsers. So, I need to find a way to force that error message to the screen.
I am dealing with a situation where the mandatory field message is not firing when a field is deleted. I added a changed event, and I can see in the log that it does detect when the user clears the field out. How do I force a mandatory field...
I am dealing with a situation where the mandatory field message is not firing when a field is deleted. I added a changed event, and I can see in the log that it does detect when the user clears the field out. How do I force a mandatory field message from the change event?
I am tasked with creating a hyperlink that will allow a user to directly print a .pdf file from our company's server without opening up the file. Does Maestro provide any kind of support for printing? Has anyone every had to directly print a...
I am tasked with creating a hyperlink that will allow a user to directly print a .pdf file from our company's server without opening up the file. Does Maestro provide any kind of support for printing? Has anyone every had to directly print a document in Maestro?
I have a dialog object that contains a lot of data for disclosure statements. The user will need to scroll to the bottom of the document, at which point the 'disagree' and 'agree' options will be eligible to click. Does anyone know how to hook...
I have a dialog object that contains a lot of data for disclosure statements. The user will need to scroll to the bottom of the document, at which point the 'disagree' and 'agree' options will be eligible to click. Does anyone know how to hook into the scroll event of the dialog box so that I can calculate when they scroll to the bottom of that dialog?
I got this to work on a regular page when I could hook into the window.onscroll event as follows. This however does not work with a dialog object because I am not scrolling in the window anymore, but rather the dialog object.
window.onscroll = function() {
var totalPageHeight = document.body.scrollHeight;
var scrollPoint = window.scrollY + window.innerHeight;
// check if we hit the bottom of the page
if(scrollPoint >= totalPageHeight){
console.log("at the bottomz");
data.isScrollBottom = true;
}
}