Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Generate HTML output using PL/SQL query.

3198080Oct 31 2016 — edited Nov 1 2016

Hi all,

I need to generate the following HTML Tags with the text which can be dynamically changed according to the requirement changes (FYI : The dynamic information changes as per the requirement, which is given out through a query). Have a look at the following HTML page.

---------------------------------------Detail List of Items---------------------------------------

<li>

  <div class="box">

   <div class="box-header">

     <span class="title">{List Title}</span>

     <ul class="box-toolbar">

       <li><span class="label label-green">{List item count}</span></li>

     </ul>

   </div>

   <div class="box-content">

  <table class="table table-normal" id="tblQuickMenuLatestRecords" style="display: table;">

     <thead>

         <tr>

             <td>{Code}</td>

             <td>{Description}</td>

             <td style="width: 40px"></td>

         </tr>

     </thead>

     <tbody>

         <tr>

             <td>{Row Code}</td>

             <td>{RowDescription}</td>

             <td>

                 <div class="btn-group">

                     <button class="btn btn-xs btn-default" onclick="EntityMoreInformationNavigate('{MenuName}','{DocumentId}','{EntityCode}')"><i class="icon-signin"></i></button>

                 </div>

             </td>

         </tr>

     </tbody>

  </table>

   </div>

  </div>

</li>

----------------------------------------------------------------------------------------------

If there are any concerns regarding my question, please leave a comment.

Thanks.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 29 2016
Added on Oct 31 2016
9 comments
7,781 views