<string>Enter here the id of the table or informaltable. You can use the id to link or reference to the table or informaltable elsewhere in the document.</string>
<string>Enter here the id of the table or informaltable. You can use the id to link or reference to the table or informaltable elsewhere in the document.</string>
<string>Check this box to create a table header. The table header is the first row of the table, and has the same number of entries as the other rows.</string>
<string>Enter here the id of the table or informaltable. You can use the id to link or reference to the table or informaltable elsewhere in the document.</string>
</property>
</widget>
<widget class="SpinBoxInt" row="1" column="2">
<property name="name">
<cstring>sb_lin</cstring>
</property>
<property name="value">
<number>5</number>
</property>
<property name="associations" stdset="0">
<stringlist>
<string>l=1
while [ $l -le @widgetText ]; do
echo ''
echo '<row>'
@sb_col
echo '</row>'
l=$((l+1))
done;
</string>
</stringlist>
</property>
<property name="whatsThis" stdset="0">
<string>Select or enter in this spin box the number of rows that should be created by the wizard. After using the wizard, you can add (or remove) more rows. To add more rows, add the same number of <entry> tags per <row> tag as in the rest of the table.</string>
<string>Select or enter in this spin box the number of rows that should be created by the wizard. After using the wizard, you can add (or remove) more rows. To add more rows, add the same number of <entry> tags per <row> tag as in the rest of the table.</string>
<string>Enter here the title of the table. The title of the table will appear in the table of contents as well, under the "List of Tables", if you are using the KDE DocBook tools.</string>
</property>
</widget>
<widget class="SpinBoxInt" row="0" column="2">
<property name="name">
<cstring>sb_col</cstring>
</property>
<property name="value">
<number>3</number>
</property>
<property name="associations" stdset="0">
<stringlist>
<string>c=1
while [ $c -le @widgetText ]; do
echo "<entry></entry>"
c=$((c+1))
done
</string>
</stringlist>
</property>
<property name="whatsThis" stdset="0">
<string>Select or enter in this spin box the number of columns that should be created by the wizard.</string>
<string>Enter here the title of the table. The title of the table will appear in the table of contents as well, under the "List of Tables", if you are using the KDE DocBook tools.</string>
</property>
</widget>
</grid>
</widget>
</grid>
</widget>
<widget class="ButtonGroup" row="1" column="0">
<property name="name">
<cstring>TableTypeGroup</cstring>
</property>
<property name="title">
<string>Table Type</string>
</property>
<grid>
<property name="name">
<cstring>unnamed</cstring>
</property>
<property name="margin">
<number>11</number>
</property>
<property name="spacing">
<number>6</number>
</property>
<widget class="RadioButton" row="1" column="0">
<property name="name">
<cstring>TableOption</cstring>
</property>
<property name="text">
<string>ta&ble</string>
</property>
<property name="associations" stdset="0">
<stringlist>
<string>@null</string>
<string>echo '<table id="@le_id">'
@TitleLineBox
echo '<tgroup cols="@sb_col.text">'
echo ''
@cb_header
echo ''
echo '<tbody>'
@sb_lin
echo '</tbody>'
echo ''
echo '</tgroup>'
echo '</table>'
</string>
</stringlist>
</property>
<property name="whatsThis" stdset="0">
<string>Select this option to generate a formal table (table).</string>
</property>
</widget>
<widget class="RadioButton" row="0" column="0">
<property name="name">
<cstring>InformaltableOption</cstring>
</property>
<property name="focusPolicy">
<enum>TabFocus</enum>
</property>
<property name="text">
<string>&informaltable</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="associations" stdset="0">
<stringlist>
<string>@null</string>
<string>echo '<informaltable id="@le_id">'
echo '<tgroup cols="@sb_col.text">'
echo ''
echo '<tbody>'
@sb_lin
echo '</tbody>'
echo ''
echo '</tgroup>'
echo '</informaltable>'</string>
</stringlist>
</property>
<property name="whatsThis" stdset="0">
<string>Select this option to generate an informal table (informaltable).</string>
<li><b>informaltable:</b> the most used table type in KDE docs. A informaltable does not contain title, table head or entry in the table of contents.</li>
<li><b>table:</b> a complete and formal table type, including title, table head and entry in the table of contents.</li>