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

  • Home
  • SEARCH
  • 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 6061527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:56:52+00:00 2026-05-23T08:56:52+00:00

This is a code to enter date, select in/out and location. If the user

  • 0

This is a code to enter date, select in/out and location.
If the user want more fields to enter i also added a addRow function.

<table>    
for($i=0;$i<15;$i++){ 
<tr><td>
<input type='datepick' name='scheduledatepick[$i]' />
<select name='schedulein[$i]' /><option>--</option>
<input type='text' name='location[$i]' />
</td></tr>
}
</table>

Now my question is if a user entered a field in a row(maybe datepick or schedulein or location) then he must enter all the other fields in that same row. How to achieve this?
enter image description here

  • 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-05-23T08:56:52+00:00Added an answer on May 23, 2026 at 8:56 am

    Assuming you want this to happen on a button click, you can do this: Working Demo

    jQuery

    $('button').click(function() {
        // set up an array to store the invalid rows
        var rows = new Array();
        $('table tr')
            // reset all rows before we validate
            .removeClass("error")
            // loop over each row
            .each(function(i) {
                // work out whether the fields are completed or not
                var filledFieldCount = 0;
                filledFieldCount += $("[name='scheduledatepick[" + i + "]']", this).val().length > 0 ? 1 : 0;
                filledFieldCount += $("[name='schedulein[" + i + "]']", this).val() !== "--" ? 1 : 0;
                filledFieldCount += $("[name='location[" + i + "]']", this).val().length > 0 ? 1 : 0;
    
                // if the total completed fields for this row
                // is greater than none and less than all
                // then add the row to the invalid rows list
                if (filledFieldCount > 0 && filledFieldCount < 3) {
                    rows.push(this);
                }
             });
    
        // finally, change the background of the
        // rows to mark them as invalid
        if (rows.length > 0){
            $(rows).addClass("error");
        }
    
    });
    

    CSS

    .error { background-color: red; }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code in Python inputted = input(Enter in something: ) print(Input is
Using MATLAB, I have this code: value = input('>> Enter a value: '); and
This code always works, even in different browsers: function fooCheck() { alert(internalFoo()); // We
Could someone take a look at this code and find out what's wrong with
Code: if(!$picture) $error = $error.<div>This is a photo site, we require you select a
The user has to enter a Date From field and a Date To field.
I have a view controller which contains a field for user to enter date
This code in JS gives me a popup saying i think null is a
This code is from Prototype.js . I've looked at probably 20 different tutorials, and
this code always returns 0 in PHP 5.2.5 for microseconds: <?php $dt = new

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.