Atozed Forums
IWMemo in template - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: IWMemo in template (/thread-2458.html)



IWMemo in template - matija - 07-21-2021

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?


RE: IWMemo in template - Jose Nilton Pace - 07-21-2021

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.