Html::jsDisable PHP 메소드

jsDisable() 정적인 공개 메소드

Get javascript code for disable an item
static public jsDisable ( $id ) : String
$id string id of the dom element
리턴 String
    static function jsDisable($id)
    {
        return self::jsGetElementbyID($id) . ".attr('disabled', 'disabled');\n";
    }
Html