| removeButton() | ใช้ลบ button ณ ตำแหน่งที่กำหนด ออกจาก buttonGroup |
|---|
method:removeButton ( index )
return type:void
content:ใช้ลบ button ณ ตำแหน่งที่กำหนด ออกจาก buttonGroup
example:var attributes = { name: "button-group", disabled: false }; var group_button = new YAHOO.widget.ButtonGroup ( "bgroup", attributes ); group_button.addButtons ( [ { label: "Radio 1", value: "1", checked: true }, { label: "Radio 2", value: "2" }, { label: "Radio 3", value: "3" } ] ); group_button.removeButton ( 1 );