Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IWMemo in template
#1
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?
Reply
#2
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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)