XEED 테이블에서 행과 열의 갯수가 뒤바뀌어 출력되는 버그 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7976 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-12-15 02:17:33 +00:00
parent a23cce4c3e
commit b6b81dcaae

View file

@ -2903,8 +2903,8 @@ Table = xe.createPlugin('Table', {
$fieldset = $layer.find('fieldset.wh');
$input = $fieldset.find('input:text');
cfg.cols = $input.eq(0).val() - 0;
cfg.rows = $input.eq(1).val() - 0;
cfg.rows = $input.eq(0).val() - 0;
cfg.cols = $input.eq(1).val() - 0;
cfg.width = $input.eq(2).val() - 0 + $fieldset.find('button.selected').text();
self.cast('EXEC_TABLE', [cfg]);