In this tutorial we will learn how to realize a create interface using a dialog.
Here is a similar tutorial that uses Ajax link to achieve the goal, but we will use a simpler and more effective approach: the event onSubmit of the form.
Let's imagine we have a classroom with many students. If the user fills in the form of the student and there is no classroom made, he will have to create a classroom first and lose the already inserted input.
We want to allow the user to create the classroom from the form of the student, without changing pages.
First of all we need a form for creating the classroom. We can generate a Crud for classroom with gii and adapt the code to our needs.
Once we are satisfied with our form and it works with the usual submit, we can use it in a dialog.
We need to enhance the action create of the classroom controller.
Let's change it this way:
public function actionCreate() { $model=new Classroom; // Uncomment the following line if AJAX validation is needed // $this->performAjaxValidation($model); if(isset($_POST['Classroom'])) { $model->attributes=$_POST['Classroom']; if($model->save()) { if (Yii::app()->request->isAjaxRequest) { echo CJSON::encode(array( 'status'=>'success', 'div'=>"Classroom successfully added" )); exit; } else $this->redirect(array('view','id'=>$model->id)); } } if (Yii::app()->request->isAjaxRequest) { echo CJSON::encode(array( 'status'=>'failure', 'div'=>$this->renderPartial('_form', array('model'=>$model), true))); exit; } else $this->render('create',array('model'=>$model,)); }
We add some small changes: in case of ajax request we write a json encoded array.
In this array we return a status (failure/success) and the whole form created with renderPartial.
Now the back-end is done, let's write the dialog itself.
In the form of the student somewhere we add this code:
echo CHtml::link('Create classroom', "", // the link for open the dialog array( 'style'=>'cursor: pointer; text-decoration: underline;', 'onclick'=>"{addClassroom(); $('#dialogClassroom').dialog('open');}")); <?php $this->beginWidget('zii.widgets.jui.CJuiDialog', array( // the dialog 'id'=>'dialogClassroom', 'options'=>array( 'title'=>'Create classroom', 'autoOpen'=>false, 'modal'=>true, 'width'=>550, 'height'=>470, ), )); <div class="divForForm"></div> <?php $this->endWidget(); <script type="text/javascript"> // here is the magic function addClassroom() { <?php echo CHtml::ajax(array( 'url'=>array('classroom/create'), 'data'=> "js:$(this).serialize()", 'type'=>'post', 'dataType'=>'json', 'success'=>"function(data) { if (data.status == 'failure') { $('#dialogClassroom div.divForForm').html(data.div); // Here is the trick: on submit-> once again this function! $('#dialogClassroom div.divForForm form').submit(addClassroom); } else { $('#dialogClassroom div.divForForm').html(data.div); setTimeout(\"$('#dialogClassroom').dialog('close') \",3000); } } ", )); return false; } </script>
And that's all. In this code we have:
This function fires an ajax request to the action create we prepared in the previous step.
The returned form will be placed in the dialog (with eventually, all errors and so on) in case of status failure, in case of status success in the example we replace the div and we close the dialog after 3 seconds.
If you use this system in the form for student, you can return, for example, the id of the newly inserted classroom and select it automatically in a drop down list.
To make a long story short:
This methodology is very comfortable because it changes anything in the code of the _form, so any eventually added field in classroom will be available in both standard and dialog insert.
Total 20 comments
This code is working fine, but it adds the classroom in the background, how can i redirect the user to say classroom index action, so that updated page loads after the dialogue has finished?
@w00tw00t111: Just looked over my code and I'd gotten it more complicated than I needed to. So, now, don't think I can verify the code in my comment. Will delete that comment.
Thanks!
fr0d0z,
Tried your code and zaccaria's original code and your code would not post data where as zaccaria's does.
Can you verify your comment's code?
I'm trying to use a CMaskedTextField inside the dialog but it fails. Instead it displays like a normal textField. Does anybody know the reason why?
Same happens with CJuiDatePicker as well..
data are the data passed via post.
$(this) is referrring to the form, .serialize take all the contents of the field in the form and send to the server.
Using this data=> $(this).serialize() you will create an ajax request with in the $_POST the attributes, so it can be managed to the standard action.
I checked Jquery doc about serialize(), but still don't understand what is this code doing for you?
what is $(this) referring to? why??
Thanks a million!
Thank you for that article. Following problem: I wanted to have another widget within the JDialog (DatePicker), so I had to set the 4th parameter of renderPartial() to 'true'. But then only the first click on the link is working. If I close the dialog and click again, the dialog doesnt show. Any idea what could go wrong here? Maybe it's the same problem as with the previous poster.
Edit: I had to stop loading jquery every request. Thanks tydeas for your info in your wiki article linked in the beginning of the tutorial.
The code works well, but after I created a new model the link did not work any more (dialog did not pop up). What could be the problem? Thanks!
If you want to enable ajax validation in form loaded with ajax:
In the controller then rending partial form add third true parameter, this will include also all scripts from the view:
In the partial form you are rendering add:
Then jquery script will be not included second time
For me it's not working. Maybe I don't understand well how to do this but I copy/paste the code and when I click on the submit button of the dialog form it only prints the JSON code generated by the actionCreate method.
What's wrong? I think that it's not working the CHtml::ajax
Just found out and sharing for anyone to check it out. I changed the yii generated files and put locale characters with accents and saved it. Because they were generated with encoding in ansi, i had to save it in utf-8 without bom, change the error characters and save it again.
Apparently, php can't read these files and it doesn't report errors either.
Hi,
I'm rather noobish on yii and following your tutorial, I click on the link, it opens the dialog with nothing on it.
The json request returns {"status":"failure","div":null}.
Everything is done as the tutorial. Is there something I am missing ?
Thanks for the help!
I will place the code here:
on the actionCreate:
and finally the view:
I just want to say thanks Zaccaria! I've been banging my head against a wall. I flipped a few things around to update the model, rather than create a new one.
Have you gotten ajax validation to work with this process? That's the next project that will probably make me go bald.
Thanks! Logan
Yes, you are right, also I didn't pay attention to RussellEngland's comment which is a better demonstration of the same issue.
You can avoid to do a second ajax call, simply return the depending dropdown in the response for successfully insert.
Sorry, actionJSONPositionTitles() doesn't return a JSON, wrong copy and paste, still it do the job.
Zaccaria, Thanks for this fine piece of howto.
I also wanted to update a dropDownList after the success of insertion from the dialog. So this is how I did it, thought might help people.
I have already implemented a method in the Controller which returns a JSON data for the dropDownList needing a reload.
Then giving the permission to the lets say Admin in accessRules()
And finally, with adding another CHtml::ajax() in success IF block we can update the dropDownList after successful insertion.
Great article, thank you :)
I added this to the controller for a success
and this to the form - assuming there is a classroom_id select list
Yii::app()->end will give some complication in debug mode, as it will append the whole log table spoiling the json output.
For semplicity, as there are no more task that the application is supposed to trigger after outputting the json, I used exit.
If you are confident that in your case Yii::app()->end will safely work, you can use this one as well, but updating the post can make the developing experience a bit more hard for future developers.
And, last but not the least, I like exit...
I remember coming across a discussion somewhere that it is better to use Yii::app()->end() instead of 'exit', as in your example. Does anybody know why this is, or if it's true? If so, perhaps this post should be updated.
Leave a comment
Please login to leave your comment.