The simplest jQuery editable plugin - type radio
กำลังอยู่ในช่วงรื้อ code jQuery jeditable แก้ไขใหม่จาก GitHub หลังจากศึกษาจากคู่มือ ก็จำต้องเขียน plugin บางตัวขึ้นใช้เอง
นี่คือ plugin ที่ง่ายที่สุดแล้ว 555
$.editable.addInputType('radio', { })
แต่เนื่องจากว่ามันไม่ได้ทำอะไรเลย หลังจากสร้าง element เรียบร้อยแล้ว ก่อนที่จะ return จึงต้องสั่งให้มันบันทึกข้อมูลทันที
// SAVE value immediately when radio or checkbox click if (inputType == 'radio' || inputType == 'checkbox') { self.save($this, value, callback) }