Bug Tracker

Opened 13 years ago

Closed 13 years ago

Last modified 12 years ago

#6454 closed bug (invalid)

[autocomplete]

Reported by: YetkinEREN Owned by:
Priority: Milestone: 1.4.3
Component: unfiled Version: 1.4.2
Keywords: autocomplete Cc:
Blocked by: Blocking:

Description

i use that plugin for autocomplate; docs.jquery.com/Plugins/Autocomplete

but i have a problem with spacial chars. if a special char first char of a word, this char has being ignored and if its not first char, chars before that has being ignored.

for example: "şlk" cant found but if i type "lk" "şlk" found and if i type öd "aöd" found.

i made a test page; http://www.yetkineren.com/Autocomplete/oto.html

and tahts the code thanks..

<html> <head> <meta http-equiv="Content-Language" content="tr"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">

<script src="http://code.jquery.com/jquery-latest.js"></script> <link rel="stylesheet" href="jquery.autocomplete.css" type="text/css" /> <script type="text/javascript" src="encoder.js"></script> <script type="text/javascript" src="Scripts/jquery.bgiframe.min.js"></script> <script type="text/javascript" src="Scripts/jquery.autocomplete.js"></script>

<script>

$(document).ready(function(){

var gata=[

{"text": '21.png resmi aöd', "value": '21.png'}, {"text": '21.png resmi ĉöd', "value": '21.png'}, {"text": '21.png resmi aĉd', "value": '21.png'}, {"text": '21.png resmi aéd', "value": '21.png'}, {"text": '42.png resmi ésd', "value": '42.png'}, {"text": '63.png resmi aİd', "value": '63.png'}, {"text": '34.png resmi Çsd', "value": '34.png'}, {"text": '65.png resmi jkl', "value": '65.png'}, {"text": '65.png resmi Ğkl', "value": '65.png'}, {"text": '65.png resmi ökl', "value": '65.png'}, {"text": '65.png resmi şlk', "value": '65.png'}, {"text": '65.png resmi lşk', "value": '65.png'}, {"text": '65.png resmi şlk', "value": '65.png'}, {"text": '36.png resmi &#351;lk', "value": '36.png'} ];

$('#eksampil').autocomplete(gata, {

width: 300, scroll: true, scrollHeight: 300, matchContains: "word", mustMatch: true,

formatItem: function(row, i) {

return i+". result <img src='images/" + row.value + "'/> " + row.text

}, formatMatch: function(row) {

Encoder.EncodeType="entity"; return row.text Encoder.EncodeType="entity"; Encoder.htmlDecode( Encoder.htmlEncode(i);

},

formatResult: function(row) {

return row.text

} });

}); </script>

</head> <body>

<br>

type "re" for see all: <input id="eksampil" /><br>

</body> </html>

Change History (1)

comment:1 Changed 13 years ago by dmethvin

Resolution: invalid
Status: newclosed

This bug tracker is for jQuery core issues only. Please report plugin issues on the forum, or wherever the plugin author prefers.

http://forum.jquery.com

Note: See TracTickets for help on using tickets.