Moving DocMart Quantity to another section of the Order Form Follow
First, create an HTML field to act as an anchor with the name QuantityAnchor and this script will move the DocMart quantity field below that HTML QuantityAnchor field.
Replace the "NAMEOFDMITEM" to the DocMart field in question.
<script type="text/javascript">
<!--
$(document).ready(function () {
$("#row_udf_QuantityAnchor ").append($("#row_inv_NAMEOFDMITEM .dm-qty"));
});
-->
</script>