Use the bind attribute to suppress model binding and validation for particular view events.
The following example suppresses binding when the cancel event occurs:
<view-state id="enterBookingDetails" model="booking">
<transition on="proceed" to="reviewBooking">
<transition on="cancel" to="bookingCancelled" bind="false" />
</view-state>