From https://spservices.codeplex.com/discussions/528533
I just installed the update on our Dev box. Here is what a required select now looks like:
```
<td width="190px" valign="top" class="ms-formlabel" >
<H3 class="ms-standardheader">
<nobr>Guideline<span class="ms-formvalidation"> *</span></nobr></H3>
</td>
<td valign="top" class="ms-formbody" >
<span dir="none">
<select name="ctl00$m$g_308135f8_3f59_4d67_b5f8_c26776c498b7$ff51$ctl00$Lookup" id="ctl00_m_g_308135f8_3f59_4d67_b5f8_c26776c498b7_ff51_ctl00_Lookup" title="Guideline Required Field">
</select>
<br/>
</span>
</td>
```
I have not tested SPServices yet but have ran into issues with other plugins.
Comments: I'm testing the alpha code and it seems to work for SPFilterDropdown, but not for SPCascadeDropdowns. ``` //Filter priorities - this works with the required field Educational Priority $().SPServices.SPFilterDropdown({ relationshipWebURL: "/tools/accountability", relationshipList: "Educational Priority", relationshipListColumn: "Title", relationshipListSortColumn: "ID", columnName: "Educational Priority", CAMLQuery: " <Eq><FieldRef Name='Active' /><Value Type='Integer'>1</Value></Eq>", completefunc: removePriorityBlankOption, debug: true }); //End filter priorities // Cascade the outcomes - This does not work with the required field Educational Priority $().SPServices.SPCascadeDropdowns({ relationshipWebURL: "/tools/accountability", relationshipList: "Outcome Statement", relationshipListParentColumn: "Priority", relationshipListChildColumn: "Title", CAMLQuery: "<Eq><FieldRef Name='Active' /><Value Type='Integer'>1</Value></Eq>", parentColumn: "Educational Priority", childColumn: "Outcome Statement Lookup", debug: true, completefunc: drawOutcomeStatementCheckboxes }); // end cascade outcomes ```
I just installed the update on our Dev box. Here is what a required select now looks like:
```
<td width="190px" valign="top" class="ms-formlabel" >
<H3 class="ms-standardheader">
<nobr>Guideline<span class="ms-formvalidation"> *</span></nobr></H3>
</td>
<td valign="top" class="ms-formbody" >
<span dir="none">
<select name="ctl00$m$g_308135f8_3f59_4d67_b5f8_c26776c498b7$ff51$ctl00$Lookup" id="ctl00_m_g_308135f8_3f59_4d67_b5f8_c26776c498b7_ff51_ctl00_Lookup" title="Guideline Required Field">
</select>
<br/>
</span>
</td>
```
I have not tested SPServices yet but have ran into issues with other plugins.
Comments: I'm testing the alpha code and it seems to work for SPFilterDropdown, but not for SPCascadeDropdowns. ``` //Filter priorities - this works with the required field Educational Priority $().SPServices.SPFilterDropdown({ relationshipWebURL: "/tools/accountability", relationshipList: "Educational Priority", relationshipListColumn: "Title", relationshipListSortColumn: "ID", columnName: "Educational Priority", CAMLQuery: " <Eq><FieldRef Name='Active' /><Value Type='Integer'>1</Value></Eq>", completefunc: removePriorityBlankOption, debug: true }); //End filter priorities // Cascade the outcomes - This does not work with the required field Educational Priority $().SPServices.SPCascadeDropdowns({ relationshipWebURL: "/tools/accountability", relationshipList: "Outcome Statement", relationshipListParentColumn: "Priority", relationshipListChildColumn: "Title", CAMLQuery: "<Eq><FieldRef Name='Active' /><Value Type='Integer'>1</Value></Eq>", parentColumn: "Educational Priority", childColumn: "Outcome Statement Lookup", debug: true, completefunc: drawOutcomeStatementCheckboxes }); // end cascade outcomes ```