私は特にJörnZaeffererによるjQuery Autocomplete v1.1プラグインを参照しています[ソース: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/] このプラグインのいくつかのバリエーション。
オートコンプリートで候補を提供するフィールドが複数あるため、ユーザーが入力を開始したときに追加のパラメーターをサーバーに渡そうとしています。
クエリに加えて、入力名属性をサーバーに送信したいのですが、extraParams内で$(this).attr( 'name')を使用できないようです。
私のjQuery:
$('.ajax-auto input').autocomplete('search.php', {
extraParams: {
search_type: function(){
return $(this).attr('name');
}
}
})
これが私のHTMLです。
<form method="post" action="#" id="update-form" autocomplete="off">
<ol>
<li class="ajax-auto">
<label for="form-initials">Initials</label>
<input type="text" id="form-initials" name="initials" />
</li>
<li class="ajax-auto">
<label for="form-company">Company</label>
<input type="text" id="form-company" name="company" />
</li>
</ol>
</form>
助言がありますか?
現在jquery uiの一部であるオートコンプリート機能を使用しています。 「extraParams」フィールドを渡すことは機能しませんが、リクエストクエリ文字列に値を追加するだけです。
$(document).ready(function() {
src = 'http://domain.com/index.php';
// Load the cities straight from the server, passing the country as an extra param
$("#city_id").autocomplete({
source: function(request, response) {
$.ajax({
url: src,
dataType: "json",
data: {
term : request.term,
country_id : $("#country_id").val()
},
success: function(data) {
response(data);
}
});
},
min_length: 3,
delay: 300
});
});
これを試して:
$('.ajax-auto input').setOptions({
extraParams: {
search_type: function(){
return $(this).attr('name');
}
}
})
here も参照してください
私は同様の問題を抱えていた...それがあなたのために働くかどうかわからない....
私は試した
$("#awbCusName").autocomplete("getOracleCus.php?",{
extraParams: {
ZONE: function() { return $("#awbZone").val(); },
SE: function() { return $("#awbSE").val(); },
WSC: function() { return $("#awbWSC").val(); }
},
delay:200,
selectOnly:true,
cacheLength:0,
autoFill:true,
matchSubset:true,
minChars:1
});
CACHELENGTH:0はトリックをしました
ありがとう
次のように、組み込みのjquery ui autocompleteを使用できます。
$(function() {
$("#BurroughName").autocomplete({
minLength: 0,
source: function( request, response) {
$.ajax({
url: "/JsonData/GetBurroughFromSearchTermJson",
dataType: "json",
data: {
term: request.term,
CityId: $("#CityId").val()
},
success: function( data ) {
response( data );
}
});
},
select: function( event, ui) {
$("#BurroughId").val(ui.item.id);
if (ui.item.id != null) {
var cityId = $('#CityId').val();
$.getJSON("/AdSales/City.mvc/GetCityJSONListFromBrand", { burroughId: ui.item.id }, function(data) {
$("#CityId").fillSelect(data);
var foo = $("#CityId option[value=" + cityId + "]");
if(($("#CityId option[value=" + cityId + "]").length > 0) && cityId != "")
{
$("#CityId").val(cityId);
}
});
}
$('#burroughSpinner').fadeOut('slow', function(){});
}
});
});
Jsonpの例を次に示します。 http://jqueryui.com/demos/autocomplete/#remote-jsonp
最も投票された回答に関しては、ソースURLに追加のリクエスト値を追加するだけで、はるかに単純な構文があると思います。
この:
$("#city_id").autocomplete({
source: src+"?country_id="+$("#country_id").val().
min_length: 3,
delay: 300
});
以下と同じです:
$("#city_id").autocomplete({
source: function(request, response) {
$.ajax({
url: src,
dataType: "json",
data: {
term : request.term,
country_id : $("#country_id").val()
},
success: function(data) {
response(data);
}
});
},
min_length: 3,
delay: 300
});
srcがURL文字列である場合。
理想的とは言えませんが、プラグインをハッキング/変更して、機能するようにしました。
単純に、プラグイン内のAJAX jQuery関数を変更しました。
363行目付近に表示されます:
$.ajax({
// try to leverage ajaxQueue plugin to abort previous requests
mode: "abort",
// limit abortion to this input
port: "autocomplete" + input.name,
dataType: options.dataType,
url: options.url,
data: $.extend({
q: lastWord(term),
search_type: $(input).attr('name'), // my mod to pickup multiple fields
limit: options.max
}, extraParams),
success: function(data) {
var parsed = options.parse && options.parse(data) || parse(data);
cache.add(term, parsed);
success(term, parsed);
}
});
私はまだこれに対するエレガントな解決策を探しているので、遠慮なく提案を寄せてください。
jQuery( "#jac" ).autocomplete({
source: autocompleteURL,
minLength: 2,
search: function( event, ui ) {
// update source url by adding new GET params
$(this).autocomplete( 'option', 'source', autocompleteURL + 'var1=aaa&var2=bbb' );
}
})
Jquery.ui.autocomplete 1.8.17で動作します
JQuery 1.7でオートコンプリートを使用する...
Aspxデータグリッドの使用:入力された値に基づいて異なるシードデータが選択されたレコードを起動するには、オートコンプリートが必要でした。また、オートコンプリートのデータを取得するために、データグリッドのレコードに表示されている他の2つのフィールドが必要でした。参照する必要があるすべてのフィールドには、独自のクラス名があります。
$(".AutoSearch").autocomplete({
DateTime: "",
Maker: "",
search: function (event, ui) {
DateTime = $(this).parent().parent().parent().find(".DateTime").text();
Maker = $(this).parent().parent().parent().find(".Maker").text();
},
source: function (request, response) {
$.ajax({
type: "POST",
dataType: "json",
url: "AutoList.aspx/GetListOfAutos",
data: "{ " +
"'DateTime': '" + DateTime + "', " +
"'Maker': '" + Maker + "', " +
"'SearchSeed': '" + request.term + "', " +
"'NumberToRetrieve': '" + 100 + "'" +
" }",
contentType: "application/json; charset=utf-8",
success: function (data) {
response($.map(data.d, function (item) {
return {
label: item.Description,
value: item.Number
}
}));
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("There was an error retrieving the Data.");
}
});
},
change: function (event, ui) {
$(this).parent().parent().parent().parent().parent().parent().css("background-color", "#EEC900");
$(this).parent().parent().parent().parent().parent().parent().find(".chkReadyExport").find("input:checkbox").prop("checked", false);
},
select: function (event, ui) {
this.value = ui.item.value;
return false;
},
minlength: 6,
open: function () {
$(this).removeClass("ui-corner-all").addClass("ui-corner-top");
},
close: function () {
$(this).removeClass("ui-corner-top").addClass("ui-corner-all");
}
});
}
2つのプロパティを追加しました。 DateTimeおよびMakerを使用し、次に検索を使用します。これは、オートコンプリートがソースを起動する前に起動されます。必要なデータを、現在の行から取得できました。これにより、すべての検索項目と追加のデータ項目をすべて1か所に保持することができます。
.parent()。parent()などは、gridviewにデータを表示する複数行のテーブルがあり、ツリーを上に移動して、探しているテキストボックスまたはラベルを見つけて変更する必要があるためです。変更されたデータを含む行の背景色。私はjQueryを使ってアイテムを見つけることにまだ熟達していません。
私は同じ問題を抱えていましたが、奇妙なことに、オートコンプリートプラグインの縮小版のみでした。縮小されていないバージョンを使用した場合、機能します。縮小版をまだ見ていないので、違いが何であるかはわかりません。
で試す
$( "#ricerca" ).autocomplete({
source: "response.php?param=param",
minLength: 2
});
すでに答えられていることを理解しています。しかし、これが将来誰かを助け、多くの時間と痛みを節約することを願っています。
(you can replace 'CRM.$' with '$' or 'jQuery' depending on your jQuery version)
完全なコードは以下のとおりです。これは、CiviCRMでテキストボックスをオートコンプリートするために行ったものです。それが誰かを助けることを願って
CRM.$( 'input[id^=custom_78]' ).autocomplete({
autoFill: true,
select: function (event, ui) {
var label = ui.item.label;
var value = ui.item.value;
// Update subject field to add book year and book product
var book_year_value = CRM.$('select[id^=custom_77] option:selected').text().replace('Book Year ','');
//book_year_value.replace('Book Year ','');
var subject_value = book_year_value + '/' + ui.item.label;
CRM.$('#subject').val(subject_value);
CRM.$( 'input[name=product_select_id]' ).val(ui.item.value);
CRM.$('input[id^=custom_78]').val(ui.item.label);
return false;
},
source: function(request, response) {
CRM.$.ajax({
url: productUrl,
data: {
'subCategory' : cj('select[id^=custom_77]').val(),
's': request.term,
},
beforeSend: function( xhr ) {
xhr.overrideMimeType( "text/plain; charset=x-user-defined" );
},
success: function(result){
result = jQuery.parseJSON( result);
//console.log(result);
response(CRM.$.map(result, function (val,key) {
//console.log(key);
//console.log(val);
return {
label: val,
value: key
};
}));
}
})
.done(function( data ) {
if ( console && console.log ) {
// console.log( "Sample of dataas:", data.slice( 0, 100 ) );
}
});
}
});
オートコンプリートでこのjquery ajax呼び出しにデータを返す方法に関するPHPコード:
/**
* This class contains all product related functions that are called using AJAX (jQuery)
*/
class CRM_Civicrmactivitiesproductlink_Page_AJAX {
static function getProductList() {
$name = CRM_Utils_Array::value( 's', $_GET );
$name = CRM_Utils_Type::escape( $name, 'String' );
$limit = '10';
$strSearch = "description LIKE '%$name%'";
$subCategory = CRM_Utils_Array::value( 'subCategory', $_GET );
$subCategory = CRM_Utils_Type::escape( $subCategory, 'String' );
if (!empty($subCategory))
{
$strSearch .= " AND sub_category = ".$subCategory;
}
$query = "SELECT id , description as data FROM abc_books WHERE $strSearch";
$resultArray = array();
$dao = CRM_Core_DAO::executeQuery( $query );
while ( $dao->fetch( ) ) {
$resultArray[$dao->id] = $dao->data;//creating the array to send id as key and data as value
}
echo json_encode($resultArray);
CRM_Utils_System::civiExit();
}
}
なぜ機能していないのか分かりません。
ただし、最初に$(this).attr('name')
の値をチェック/デバッグできます。
また、ここで説明[オプション]タブで、Firebugを使用して、問題の解決に役立つajaxポストリクエスト(URLおよびそのデータ用)を確認します。
最初に.eachを使用してから、$(this)を使用して必要なものを変数に設定できます。結果の変数はオートコンプリートで使用できます
$(".autosuggest").each(function (index, object) {
var autosuggestType = $(this).attr("autoSuggestType");
$(this).autocomplete("url",
{
extraParams: {
autoSuggestType: autosuggestType
},