我正在尝试在“表单”块添加的问题中添加“帮助文本”。 像this之类的东西,但在表格的前端部分。
由于某种原因,它没有保存值或将值输入编辑表单。即使我手动将其添加到行中,它也不在前端输出中。
我制作了一个自定义表单块/模板,其他更改为:
db.xml中的额外表列'helptext'。并更新了块。
<table name="btFormQuestions">
...
<field name="helptext" type="text">
<default value=""/>
</field>
...
</table>
编辑表单上的额外字段(正常和编辑):
<div class="form-group">
<?php echo $form->label('helptext', t('Help Text'))?>
<?php echo $form->text('helptext', array('maxlength' => '255'))?>
</div>
在view.php中输出它
use \Application\Block\Form\MiniSurvey;
...
<?php echo $question['helptext']; ?>
为auto.js添加了额外的代码,
addQuestion:
postStr += '&helptext=' + encodeURIComponent($('#helptext' + mode).val());
...
reloadQuestion:
$('#helptextEdit').val(jsonObj.helptext);
...
resetQuestion:
$('#helptext').val('');
mini-survey.php,
$dataValues = array(
intval($values['qsID']),
trim($values['question']),
trim($values['helptext']),
$values['inputType'],
$values['options'],
intval($values['position']),
$width,
$height,
intval($values['required']),
$values['defaultDate'],
intval($values['msqID']),
);
$sql = 'UPDATE btFormQuestions SET questionSetId=?, question=?, helptext=?, inputType=?, options=?, position=?, width=?, height=?, required=?, defaultDate=? WHERE msqID=? AND bID=0';
} else {
if (!isset($values['position'])) {
$values['position'] = 1000;
}
if (!intval($values['msqID'])) {
$values['msqID'] = intval($this->db->fetchColumn("SELECT MAX(msqID) FROM btFormQuestions") + 1);
}
$dataValues = array(
$values['msqID'],
intval($values['qsID']),
trim($values['question']),
trim($values['helptext']),
$values['inputType'],
$values['options'],
intval($values['position']),
intval($values['width']),
intval($values['height']),
intval($values['required']),
$values['defaultDate'],
);
$sql = 'INSERT INTO btFormQuestions (msqID,questionSetId,question,helptext,inputType,options,position,width,height,required,defaultDate) VALUES (?,?,?,?,?,?,?,?,?,?,?)';
}
$result = $this->db->executeQuery($sql, $dataValues);
清除缓存并更新块。
Forum Post on Concrete5 with the changes
解决: 得到了这个干净的C5安装。
小变化:
将具体/块/表单的原始文件添加到应用程序文件夹(并更改了命名空间)
db.xml(不需要longtext)
<field name="helptext" type="text" size="65535"></field>
auto.js(分号;在原来的具体/块/表单/ auto.js中丢失(因此应用程序中的副本))
reloadQuestion:
$('#editQuestionForm').css('display', 'block');