github.com/keysonZZZ/kmg@v0.0.0-20151121023212-05317bfd7d39/kmgView/kmgBootstrap/tplTextArea.gotplhtml (about)

     1  <? package kmgBootstrap
     2  func tplTextArea(config TextArea) string {
     3  ?>
     4          <textarea autocomplete="off" class="form-control"
     5                      <? if config.ReadOnly { ?> readonly <? } ?>
     6                  name="<?=config.Name?>" cols="30" rows="10" ><?=config.Value?></textarea>
     7  <? } ?>