0

返信ありがとうございます。

1. keypress event works, but I am not able to remove the cursor also from the multiselect. As per the requirement, even the cursor(text input cursor: "I") should not be available. It should just be a dropdown where the user can select the option.

2. I am getting data from URL and passing it as an object to "value" in multiselect example

value : getFieldValues() //ここの関数では、初期化時に複数選択に設定した値のオブジェクトを返します。

例: [Object {PLACE="Bangalore", TYPE="city"}, Object { PLACE="Anderson", TYPE="city"}] は getFieldValues() から返されるオブジェクトです。

複数選択の値は、「Bangalore」に 2 回設定されます。なぜこれが起こっているのか教えてください。

問題の例を見つけてください

http://jsbin.com/asAdurO/1/edit

ありがとう、バーラト

4

1 に答える 1

0
Enclose the MULTISELECT in a div/span and add this code in script :

$(#divID).on('keypress', function(e) {
   e.preventDefault();    
  });
于 2014-01-22T10:31:44.780 に答える