Issue
I want to disable input tag ,my demo code is
echo $this->Form->input('AreaMaster.GroupID', array('type'=>'select', 'div'=>'control-group',
'cascadeFrom'=>'AreaMasterAreaType012', 'label'=>array('text' => 'Area Group','class'=>'control-label required'),'tabindex'=>'4', 'autoBind' => false,
'options'=>$dataSource, 'disabled' => 'true'));
I applied 'disabled' => 'true'
but it not work .
So please suggest me appropriate solution..
Solution
You are using 'disabled' => 'true'
(notice the single quotes you have around true
. This may have been the reason. I am using CakePHP 2.3
and it's working fine however.
You can also use any of the following:
'disabled'
'disabled' => 'disabled'
'disabled' => true
So your code would look like one of these:
echo $this->Form->input('AreaMaster.GroupID', array('type'=>'select', 'div'=>'control-group',
'cascadeFrom'=>'AreaMasterAreaType012', 'label'=>array('text' => 'Area Group','class'=>'control-label required'),'tabindex'=>'4', 'autoBind' => false,
'options'=>$dataSource, 'disabled'));
echo $this->Form->input('AreaMaster.GroupID', array('type'=>'select', 'div'=>'control-group',
'cascadeFrom'=>'AreaMasterAreaType012', 'label'=>array('text' => 'Area Group','class'=>'control-label required'),'tabindex'=>'4', 'autoBind' => false,
'options'=>$dataSource, 'disabled' => 'disabled'));
echo $this->Form->input('AreaMaster.GroupID', array('type'=>'select', 'div'=>'control-group',
'cascadeFrom'=>'AreaMasterAreaType012', 'label'=>array('text' => 'Area Group','class'=>'control-label required'),'tabindex'=>'4', 'autoBind' => false,
'options'=>$dataSource, 'disabled' => true));
Answered By - bigmike7801 Answer Checked By - Senaida (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.