当前位置: 首页>>代码示例>>PHP>>正文


PHP FormHelper::textbox方法代码示例

本文整理汇总了PHP中FormHelper::textbox方法的典型用法代码示例。如果您正苦于以下问题:PHP FormHelper::textbox方法的具体用法?PHP FormHelper::textbox怎么用?PHP FormHelper::textbox使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FormHelper的用法示例。


在下文中一共展示了FormHelper::textbox方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: render

 public function render()
 {
     $sResult = FormHelper::textbox($this->getAlias(), htmlentities($this->getValue(), ENT_QUOTES, "utf-8"), \ArrayHelper::merge(array('class' => 'TextboxField', 'id' => 'field_' . $this->getAlias()), $this->getHtmlOptions()));
     $sResult .= '<script type="text/javascript">
         $(document).ready(function() {
             $(\'#field_' . $this->getAlias() . '\').datetimepicker();
         });
         </script>';
     echo $sResult;
 }
开发者ID:ruxon,项目名称:module-ruxon,代码行数:10,代码来源:RuxonFormViewDateTimeColumn.class.php

示例2: render

 public function render()
 {
     $sResult = FormHelper::textbox('', $this->getValue(), array('class' => 'TextboxField', 'id' => 'field_' . $this->getAlias()));
     $sResult .= '<script>$(document).ready(
         function()
         {
             $(\'#field_' . $this->getAlias() . '\').autoSuggest("http://mysite.com/path/to/script", {minChars: 2, matchCase: true, startText: "Введите текст", preFill: \'' . $this->getValue() . '\', asHtmlName: \'' . $this->getAlias() . '\'});
         }
     );</script>';
     echo $sResult;
 }
开发者ID:ruxon,项目名称:module-ruxon,代码行数:11,代码来源:RuxonFormViewAutoSuggestColumn.class.php

示例3: render

 public function render()
 {
     $sResult = FormHelper::textbox($this->getAlias(), $this->getValue(), array('class' => 'TextboxField', 'id' => 'field_' . $this->getAlias()));
     if ($this->getAuto()) {
         $sResult .= '<script>$(document).ready(
             function()
             {
                 $(\'#field_' . $this->getAutoFieldAlias() . '\').translit({alias_box: "field_' . $this->getAlias() . '"});
             }
         );</script>';
     }
     echo $sResult;
 }
开发者ID:ruxon,项目名称:module-ruxon,代码行数:13,代码来源:RuxonFormViewAliasColumn.class.php

示例4: render

 public function render()
 {
     echo FormHelper::textbox($this->getAlias(), htmlentities($this->getValue(), ENT_QUOTES, "utf-8"), \ArrayHelper::merge(array('class' => 'TextboxField', 'id' => 'field_' . $this->getAlias()), $this->getHtmlOptions()));
 }
开发者ID:ruxon,项目名称:module-ruxon,代码行数:4,代码来源:RuxonFormViewStringColumn.class.php

示例5:

}
?>

<form action="<?php 
echo Toolkit::i()->getRequest()->getUrl();
?>
" method="post" enctype="multipart/form-data" class="form-horizontal">

    <div class="form-group">
        <label class="col-sm-2 control-label" for="login_field"><?php 
echo $this->getModel()->fieldTitle('Login');
?>
</label>
        <div class="col-sm-10">
            <?php 
echo FormHelper::textbox('Login', $this->getModel()->Login);
?>
        </div>
    </div>

    <div class="form-group">
        <label class="col-sm-2 control-label" for="password_field"><?php 
echo $this->getModel()->fieldTitle('Password');
?>
</label>
        <div class="col-sm-10">
            <?php 
echo FormHelper::password('Password');
?>
        </div>
    </div>
开发者ID:ruxon,项目名称:app,代码行数:31,代码来源:Login.tpl.php


注:本文中的FormHelper::textbox方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。