當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。