<https://lh3.googleusercontent.com/-L0QQp0aXrEU/WOxPXCp_iZI/AAAAAAAAAGw/oZ1ziUu7jK0gBejyH4JrQgn0LjS_AEevgCLcB/s1600/desired.png>
I am trying to minimize how vertical my items are.

Original (Working):

<f:section title="${%Source Details}" >
  <f:entry title="${%Title}" field="exportreportTitle">
    <f:textbox />
  </f:entry>
  <f:entry title="${%By}" field="exportreportBy">
    <f:textbox />
  </f:entry>
  <f:entry title="${%For}" field="exportreportFor">
    <f:textbox />
  </f:entry>
  <f:entry title="${%Scan Date}" field="exportreportScanDate">
    <f:textbox />
  </f:entry>
  <f:entry title="${%Report Date}" field="exportreportReportDate">
    <f:textbox />
  </f:entry>
  <f:entry title="${%Scan Version}" field="exportreportScanVersion">
    <f:textbox />
  </f:entry>
  <f:entry title="${%Report Version}" field="exportreportReportVersion">
    <f:textbox />
  </f:entry>
  <f:entry title="${%Description}" field="exportreportReportDescription">
    <f:textarea />
  </f:entry>
</f:section>

Desired:

<f:section title="${%Source Details}">
  <f:entry>
    <table width="100%">
      <tr>
        <td>Title</td>
        <td colspan="3"><f:textbox field="exportreportTitle"/></td>
      </tr>
      <tr>
        <td>Scan Date</td>
        <td><f:textbox field="exportreportScanDate"/></td>
        <td>Scan Version</td>
        <td><f:textbox field="exportreportReportDate"/></td>
      </tr>
      <tr>
        <td>Report Date</td>
        <td><f:textbox field="exportreportScanVersion"/></td>
        <td>Report Version</td>
        <td><f:textbox field="exportreportReportVersion"/></td>
      </tr>
      <tr>
        <td>Description</td>
        <td colspan="3"><f:textbox field="exportreportReportDescription"
/></td>
      </tr>
    </table>
  </f:entry>
</f:section>

Now what i've realized is that because i no longer have the ${%} which is 
for internationalization i get a serialization error. So to compensate for 
that, please see the attached image. Notice how that worked? That's my 
desired table and it seriabled properly BUT the variable names have *A 
*appended 
to the end, making me lose everything on a load. But if i remove the *A*, 
then i still have a serialization error. 

I've tried everything i can think of, and i looked at the jenkins jelly 
usage documentation. So please, someone help me from bashing my head in. 
What am i doing wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/74c9e219-fb21-4da1-87f0-e07be8bf4805%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to