Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

487
Views
Adding options dynamically , selected and not selected

In this code I want to inject options. How can I pass that using the inject function? Also pass in case some option is already selected.

dynamic_form.inject([{
  p_name: ['One','two'],
  quantity: '123',
  remarks: 'testing remark'
}, {
  p_name: ['One','two'],
  quantity: '123',
  remarks: 'testing remark'
}]);

This part of JSON is a bit confusing

$.each(formValue, function(index, value) {
  if ($.isArray(value)) {
    mainForm = clone.find("#" + index);
    if (typeof mainForm.get(0).getSource === "function") {
      $.each(value, $.proxy(fillData, mainForm.get(0).getSource()));
    }
  } else {
    var formElements = changeArray[formIndex].find("[origname='" + index + "']");
    if (formElements) {
      if (formElements.get(0).tagName.toLowerCase() == "input") {
        /* Fill in radio input */
        if (formElements.attr("type") == "radio") {
          formElements.filter("[value='" + value + "']").attr("checked", "checked");
        } else if (formElements.attr("type") == "checkbox") { /* Fill in checkbox input */
          formElements.attr("checked", "checked");
        } else {
          formElements.attr("value", value);
        }
      } else if (formElements.get(0).tagName.toLowerCase() == "textarea") {
        /* Fill in textarea */
        formElements.text(value);
      } else if (formElements.get(0).tagName.toLowerCase() == "select") {
        /* Fill in select */
        $(formElements.get(0)).find("option").each(function() {
          if ($(this).text() == value || $(this).attr("value") == value) {
            $(this).attr("selected", "selected");
          }
        });
      }
    }
  }
});
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!