Pass Id to Step 2 in Wizard

Actually, I just saw your other post. Even if your QuoteWizardStep3Model brings in a single, new row on page load, whenever you call updateData() (querying the model), you will bring in existing data that follows your newly set condition (up to the Max # of Records). So, even if your model has a max # of records equal to 1, and you select “Create default row if Model has none” and deselect “Load Model data on page load,” whenever you query the model again, your new row will be replaced with a single row from your existing data that obeys the model conditions (whereas you want to create a new row obeying the model conditions). Does that make sense?

So, rather than calling update data, your answer would be:
1) If needed, abandon the current row:

if (QuoteWizardStep3Model.data.length &gt; 0) { $.each(QuoteWizardStep3Model.data, function(i, row){ QuoteWizardStep3Model.abandonRow(row); }); } <br>
  1. Create your new row
QuoteWizardStep3Model.createRow();


And then proceed with navigating to the next step. I THINK that should work. Give it a try and let me know.