Yeah, that needed to be fixed, but after doing so, I still get the error regarding the 'Title' field not being present in 'Master List'. Are there any prerequisites that I'm not meeting in regard to the relationshipList or relationshipListColumn? The 'Title' column is 'Text', as is the 'Status' column by which I'm trying to filter. Does the 'Status' column need to be a choice type for this to work?
New Code:
New Code:
$(document).ready(function() {
$().SPServices.SPFilterDropdown({
relationshipList: "Master List",
relationshipListColumn: "Title",
columnName: "Server_x0020_Name",
CAMLQuery: "<Query><Where><Eq><FieldRef Name='Status'/><Value Type='Text'>Available</Value></Eq></Where></Query>",
debug: true
});