I have created a model using Awe Model and using the model I've generated the Awe crud.
I am able to view the data in the DB, however when I'm trying to create the record, I get an exception:
AweActiveForm and its behaviors do not have a method or closure named "textFieldRow".
The create form is:
<?php echo $form->errorSummary($model) ?>
<?php echo $form->textFieldRow($model, 'cassette_set_no', array('class' => 'span5')) ?>
<?php echo $form->textFieldRow($model, 'cassette_number', array('class' => 'span5')) ?>
<?php echo $form->textFieldRow($model, 'duration', array('class' => 'span5')) ?>
<?php echo $form->textFieldRow($model, 'status', array('class' => 'span5')) ?>
<?php echo $form->textFieldRow($model, 'remarks', array('class' => 'span5', 'maxlength' => 128)) ?>
<?php $this->widget('bootstrap.widgets.TbButton', array('buttonType'=>'submit',
'type'=>'primary','label'=>$model->isNewRecord ? Yii::t('AweCrud.app', 'Create') : Yii::t('AweCrud.app', 'Save'), )); ?>
I have Awecrud and Yiistrap installed and configured.
Any help?