Lead Status "In Progress" Code

Hello,

Does anyone know the proper syntax to reference the "In Progress" value in the leads table under leads status? When referenced as "In Progress"; how it appears, it does not function properly within setting the filter defaults nor within other written code.

Perhaps it's "In_Progress"? 

Thanks,

Jacob

Parents
  • 0

    Hi Jacob

    <span id="_Datalead_status" class="VIEWBOX">
    <select class="EDIT" size="0" name="lead_status" id="lead_status">
    <option value="In Progress" selected="">In Progress</option>
    <option value="Opportunity">Opportunity</option>
    <option value="Closed">Closed</option>
    <option value="">--None--</option>
    </select>
    <input type="hidden" name="_HIDDENlead_status" id="_HIDDENlead_status" value="In Progress" entrytype="21">
    </span>

    The value is "In Progress" in the default system.  What code is giving you issues?

Reply
  • 0

    Hi Jacob

    <span id="_Datalead_status" class="VIEWBOX">
    <select class="EDIT" size="0" name="lead_status" id="lead_status">
    <option value="In Progress" selected="">In Progress</option>
    <option value="Opportunity">Opportunity</option>
    <option value="Closed">Closed</option>
    <option value="">--None--</option>
    </select>
    <input type="hidden" name="_HIDDENlead_status" id="_HIDDENlead_status" value="In Progress" entrytype="21">
    </span>

    The value is "In Progress" in the default system.  What code is giving you issues?

Children