You will need to explicitly reset the values of hidden fields. Go to the click event of the reset button and set the hidden fields to null. For example,
// form1.page1.ResetButton1::click - (JavaScript, client)
xfa.host.resetData();
TextField1.rawValue = null;
Steve