Textarea 컨트롤
이 컨트롤은 여러 줄의 텍스트 필드를 제공합니다.

초기화
기본적으로 라이트박스에는 하나의 textarea 컨트롤이 포함되어 있습니다. 추가로 textarea 컨트롤을 추가하려면 다음 단계를 따르세요:
- 라이트박스 설정에 섹션을 추가합니다:
gantt.config.lightbox.sections = [
{name:"description", height:38, map_to:"desc", type:"textarea",focus:true},
{name:"details", height:38, map_to:"text", type:"textarea"}, /*!*/
{name:"time", height:72, map_to:"auto", type:"duration"}
];
- 새 섹션에 라벨을 정의합니다:
gantt.locale.labels.section_details = "Details";