Easy. Create a button for removing the imageGive the click event for the
button the code below:ImageField1.rawValue = null;Here is another tip in
case you want to reset the form but keep the images.Create a Reset
Button and give the click event the code below://this code stores the
image in a variable, resets the form and puts it back. Effectively not
resetting the imagefieldvar img; //create variableimg =
ImageField1.rawValue; //give the variable the image that is in the
ImageFieldxfa.host.rese...