我的调用/ index.ctp中有以下代码。在我单击注释字段时,光标从字段的中间开始,而不是在开头,键入的内容超出字段宽度,一旦达到字段宽度,就不会转到下一行。有人可以帮忙吗?我希望光标从输入字段的最开始开始,如果它到达字段集的宽度,它应该自动进入下一行。
呼叫/ index.ctp:
<div class="divm centerdiv">
<?php echo $this->Form->create('Call'); ?>
<fieldset>
<legend><?php echo __('Add Call Details'); ?></legend>
<?php
echo $this->Form->input('call_date',array('required'=>false,'id'=>'datepicker','type'=>'text'));
echo $this->Form->input('call_time', array('required'=>false));
echo $this->Form->input('comments', array('style'=>'width:365px; height:100px;','required'=>false, 'id'=> 'comments'));
echo $this->Form->input('next_call_date',array('required'=>false,'id'=>'datepicker2','type'=>'text')); echo $this->Form->input('customers_id', array('label' =>'Customer Name','options'=>$customers, 'label'=>'Customer Name', 'required'=>false));
echo $this->Form->input('employees_id', array('label' =>'Employee name','options'=>$employees, 'label'=>'Employee name', 'required'=>false));
?>
</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
答案 0 :(得分:0)
style'=>'width:365px; height:100px;
此行发生了这种情况。
这里有问题为什么?
在这里,你没有增加你的家庭规模,你已经增加了你的道路!!现在你说的为什么我的家很小?
我认为您在数据库中使用了varchar和text限制字段。将varchar更改为文本并删除长度值。试试这个我觉得它会正常工作。