thomasJang / axisj

javascript UI library
http://axisj.com/
GNU Lesser General Public License v2.1
310 stars 86 forks source link

체크박스에 체크하기가 안돼네여.. #967

Open ghost opened 7 years ago

ghost commented 7 years ago

bindChecked() 가 안돼는거 같아요

jQuery("#AXCheck_Operation1").bindChecked();

이렇게 했는데 체크박스가 깜빡이기만하고 체크가 되지 않네요..

체크를 할 수있는 다른 방법은 없나요?

jQuery("#AXCheck_Operation1").prop('checked',true);

이렇게라도 되면 좋은데......

ghost commented 7 years ago

자답입니다.

jQuery("#AXCheck_Operation1").prop('checked',true); 한 후에 jQuery("#AXCheck_Operation1").bindChecked(); 를 해야 되네요..

할때마다..