Engineering/__00. SRS
[Testlink] 요구사항명세 등 입력창 (textarea/FCKeditor) size 조정하기
qahuni
2014. 3. 4. 18:29
TestLink는 TEST Editor로 FCKeditor를 사용하고 있다.
그런데 이 창은 아래 그림과 같이 Height가 낮아 많은 양을 입력하기에는 불편하다.
높이를 좀 더 크게 하고 싶을 경우 다음 파일 등을 수정하면 된다.
경로 : testlink/third_party/fckeditor/fckeditorXXXXX.php (서너개 정도의 파일이 있다.)
public function __construct( $instanceName ) { $this->InstanceName = $instanceName ; $this->BasePath = '/fckeditor/' ; $this->Width = '100%' ; $this->Height = '200' ; $this->ToolbarSet = 'Default' ; $this->Value = '' ; $this->Config = array() ; } |
500 으로 변경하면 다음과 같이 늘어난다.