Atozed Forums

Full Version: IWMemo in template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I work with HTML templates.

<div class="container-fluid">  
   <div class="row">               
         <div class="col-md-2">
             {%MyListBox%}           
         </div>               
         <div class="col-md-10">
             {%MyMemo%}
         </div>                    
   </div>
</div>


i want the width (100%) and heigth (100%) MyMemo to be relative to the column?
Hi, try put class on your memo:
Code:
<div class="container-fluid"> 
  <div class="row">               
    <div class="col-md-2">
      {%MyListBox%}           
    </div>               
    <div class="col-md-10">
      {%MyMemo class="form-control" rows="20" %}
    </div>                   
  </div>
</div>

Adjust rows for your convenience.