Jump to content

liverpool-phil

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by liverpool-phil

  1. HI,

    Is there a way I can pass a variable (or contents thereof) to a modal when it is called, perhaps as part of the onclick? I was looking at the w3.CSS example below:

    So that, for instance I could do something like... <p>This  <?PHP echo $name; ?> has registered on $site </p>

    Apologies if this is the wrong forum, but I'm using W3.CSS and this example is similar to what I am trying to achieve. My final modal will have a construct similar to:

    <container>

       <header>

          <table>

         <footer>

    Each will section will have some variables in...

    Thanks

    Phil

    <!-- Trigger/Open the Modal -->
    <button onclick="document.getElementById('id01').style.display='block'"
    class="w3-button">Open Modal</button>
    
    <!-- The Modal -->
    <div id="id01" class="w3-modal">
      <div class="w3-modal-content">
        <div class="w3-container">
          <span onclick="document.getElementById('id01').style.display='none'" 
          class="w3-button w3-display-topright">&times;</span>
          <p>Some text in the Modal..</p>
          <p>Some text in the Modal..</p>
        </div>
      </div>
    </div> 

     

     

  2. Have tried the suggested solution but it is pretty hard to keep things in alignment. The scroll bar adds to the last column which throws the edge out with the headers table.

    Any suggestions on keeping things lined up?

     

    Thanks

    Phil

  3. HI dsonesuk,

    Thanks for the quick response.

    So one table for the headers and another for the data - I guess I can use the two sets of tables column widths in sync using width: x%

    I'll give it a try.

    Thanks

    Phil

     

  4. HI I am trying to have a table with fixed header, and scrollable data cells below. on the right hand side of the table I would like a scroll bar to allow the data cells to scroll vertically.

    This is the code I'm currently trying (without success)

    .pb-scroll {
    	display: 	 block;
    	max-height:  400px;
    	overflow:	 auto;
    }
    
    <tbody class="pb-scroll">
      <tr>
        <td>
          
          etc.

    Any help greatly appreciated.

    Phil

×
×
  • Create New...