Module:Aligned table: Difference between revisions
no edit summary
No edit summary |
|||
Line 114: | Line 114: | ||
if args['class' .. tostring(j) .. '.' .. tostring(i)] then | if args['class' .. tostring(j) .. '.' .. tostring(i)] then | ||
cell:addClass(args['class' .. tostring(j) .. '.' .. tostring(i)]) | cell:addClass(args['class' .. tostring(j) .. '.' .. tostring(i)]) | ||
else | |||
if args['rowclass' .. tostring(j)] then | |||
cell:addClass(args['rowclass' .. tostring(j)]) | |||
elseif args['row' .. tostring(j) .. 'class'] then | |||
cell:addClass(args['row' .. tostring(j) .. 'class']) | |||
end | |||
if colclass[i] ~= '' then | |||
cell:addClass(colclass[i]) | |||
end | |||
end | end | ||
if args['style' .. tostring(j) .. '.' .. tostring(i)] then | if args['style' .. tostring(j) .. '.' .. tostring(i)] then | ||
cell:cssText(args['style' .. tostring(j) .. '.' .. tostring(i)]) | cell:cssText(args['style' .. tostring(j) .. '.' .. tostring(i)]) | ||
else | |||
if args['rowstyle' .. tostring(j)] then | |||
cell:cssText(args['rowstyle' .. tostring(j)]) | |||
elseif args['row' .. tostring(j) .. 'style'] then | |||
cell:cssText(args['row' .. tostring(j) .. 'style']) | |||
end | |||
if isnotempty(colstyle[i]) then | |||
cell:cssText(colstyle[i]) | |||
end | |||
end | end | ||
cell:wikitext(args[cols*(j - 1) + i] or '') | cell:wikitext(args[cols*(j - 1) + i] or '') |