我创建了一个自定义对象Code_Postal__c
。 我们的目标是要检查到我的Code_Postal__c
具有相同邮编的帐户记录页面上的用户设置记录城市的名字。
我不需要,不希望创建一个自定义的页面visualforce。
有趣的事实是,与良好的价值观,我的领域是预先填充,但研究无法正常工作。 当我检查我的网页,以检查为什么我的自动完成不工作我得到了以下错误:
**Uncaught ReferenceError: AutoCompleteController is not defined e?retURL=%2F001M000000UyrUl:24
j$.autocomplete.source e?retURL=%2F001M000000UyrUl:24
$.widget._search jquery-ui.js:6563
(anonymous function) jquery-ui.js:413
$.widget.search jquery-ui.js:6555
(anonymous function) jquery-ui.js:413
(anonymous function) jquery-ui.js:6536
handlerProxy**
在这里我的控制器:
global with sharing class AutoCompleteController {
//private final Movie__c mov;
private Code_Postal__c cpCheck;
private Account accToCheck;
// Instance fields
public String searchTerm {get; set;}
public String selectedMovie {get; set;}
// Constructor
public AutoCompleteController() {
}
public AutoCompleteController(ApexPages.StandardController stdController) {
this.accToCheck = (Account)stdController.getRecord();
//this.mov= (Movie__c)stdController.getRecord();
}
// JS Remoting action called when searching for a cp
@RemoteAction
global static List<Code_Postal__c> searchMovie(String searchTerm) {
System.debug('Movie Name is: '+searchTerm );
List<Code_Postal__c> movies = Database.query('Select Commune__c, Code_Postal__c from Code_Postal__c where Code_Postal__c like \'%' + String.escapeSingleQuotes(searchTerm) + '%\'');
return movies;
}
}
在这里我的组件:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css"/>
<script type="text/javascript">
/*Create a new variable j$ just to avoid any conflicts with other libraries which may be using $.*/
var j$ = jQuery.noConflict();
/*Capture the list of countries in a Array.*/
/*on Document ready*/
j$(document).ready(function(){
var PLACEHOLDER = 'Enter Code_Postal__c Here';
var movieObjects;
var queryTerm;
j$('[id$=acc18zip]').autocomplete({
minLength: 2,
source: function(request, response) {
queryTerm = request.term;
AutoCompleteController.searchMovie(request.term, function(result, event){
if(event.type == 'exception') {
alert(event.message);
} else {
movieObjects = result;
response(movieObjects);
}
});
},
focus: function( event, ui ) {
j$('[id$=acc18zip]').val( ui.item.Code_Postal__c );
j$('[id$=acc18city]').val( ui.item.Commune__c );
return false;
},
select: function( event, ui ) {
j$('[id$=acc18zip]').val( ui.item.Code_Postal__c );
return false;
},
})
.data( "autocomplete" )._renderItem = function( ul, item ) {
var entry = "<a>" + item.Code_Postal__c + " " +item.Commune__c;
entry = entry + "</a>";
entry = entry.replace(queryTerm, "<b>" + queryTerm + "</b>");
return j$( "<li></li>" )
.data( "item.autocomplete", item )
.append( entry )
.appendTo( ul );
};
/* Add or remove placeholder values*/
j$('[id$=acc18zip]').val(PLACEHOLDER);
j$('[id$=acc18zip]').on("focus", function(event){
j$tgt = j$(event.target);
if(j$tgt.val() === PLACEHOLDER ){
j$tgt.val('');
j$tgt.removeClass('placeHolder');
}
});
j$('[id$=acc18zip]').on( "blur", function(event){
j$tgt = j$(event.target);
if(j$tgt.val() === '' ){
j$tgt.val(PLACEHOLDER);
j$tgt.addClass('placeHolder');
}
});
});
</script>