Forum Discussion

AshleyAsante's avatar
AshleyAsante
Qrew Cadet
8 years ago

Ask user which form they'd like to use

Within the table, is it possible when a new record is about to be created, for QB to ask which form they'd like to use? 
  • You can use script to inject a <select> element with options for each form and an onChange event handler which will load the appropriate form:
    <select onChange="window.location.href=this.value">
      <option>Pick a Form:</option>
      <option value="DBID?a=nwr&dfid=42">Long Form</option>
      <option value="DBID?a=nwr&dfid=44">Short Form</option> </select>