Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7730663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:16:54+00:00 2026-06-01T06:16:54+00:00

I have form build with yii framework. The first 2 inputs is first_name and

  • 0

I have form build with yii framework.
The first 2 inputs is “first_name” and “last_name” and I have many more inputs in the same form.
I’m checking validation with “ajaxSubmitButton” and I want to check first only “first_name” and “last_name” pass the validation and If they do next time when user will submit its would check all form.

Model -> rules

        array('first_name, last_name', 'length', 'min'=>2 , 'on' => 'setup'),
                    array('first_name, last_name , email, subject , message', 'length', 'min'=>2 , 'on' => 'submit'),

Ajax Button on View ->

         <?php echo CHtml::ajaxSubmitButton( 'Submit',
                                                                    CHtml::normalizeUrl(array('SubmitForm')),
                              array(
                    'error'=>'js:function(){
                                      alert(\'error\');
                                            }',
                            'beforeSend'=>'js:function(){
                                           alert(\'beforeSend\');
                                                                    }',
                                                                    'success'=>'js:function(data){
                                                                        alert(data);


                                                                    }',
                                                                    'complete'=>'js:function(){
                                                                       // alert(\'complete\');
                                                                    }',
                                                                    'update'=>'#updatebox',
                                                                    ) ,array('id'=>'submit')
                                                                );
                                ?>

Controller >

    public function actionMessageForm()
{
    $model = new Message;
        if(isset($_POST['Message']))
        {
              $model->attributes=$_POST['Message'];
              $valid = $model->validate('setup');
              if($valid)
              {
                  echo "pass";
                $model->save();
              } 
              else
              {
                   echo "failed";
              }

        }

}

How can I check partly inputs?
What I’m doing Wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T06:16:56+00:00Added an answer on June 1, 2026 at 6:16 am

    You have a bug in your controller. This:

    public function actionMessageForm()
    {
        $model = new Message;
            if(isset($_POST['Message']))
            {
                  $model->attributes=$_POST['Message'];
                  $valid = $model->validate('setup');
    

    should be this:

    public function actionMessageForm()
    {
        $model = new Message;
            if(isset($_POST['Message']))
            {
                  $model->scenario = 'setup'; <-- changed
                  $model->attributes=$_POST['Message'];
                  $valid = $model->validate(); <-- passing a value in here is passing an attribute
    

    or this:

    public function actionMessageForm()
    {
            if(isset($_POST['Message']))
            {
                 $model = new Message('setup');
    

    Does that help?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Every time I have to build a form with a DateTime field I try
I need to build a form where I have 2 comboBoxes . Select country
In good old MFC, the DDX routines would have built in validation for form
Form Build your own MVVM I have the following code that lets us have
I currently have a form built in which after validation, if errors exist, the
I have build a form class to generate a form that will allow a
I have used yii framework in php extensively and find scenarios very useful. to
I have this form: <%= form_for(@debate.debates.build) do |support_form| %> <div> <%= support_form.label :content %><br
I have a django form that first validates its data through calling form.is_valid(). If
In a webproject i have a complex form to build a dynamic query. When

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.