You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

  1. Determine the Form Grid Field ID. In this example, it is "entries".

    กำหนด ID เขตข้อมูลกริดแบบฟอร์ม ในตัวอย่างนี้มันคือ "รายการ"




  2. Construct the JSON object that correspond to the item row's form.

    สร้างวัตถุ JSON ที่สอดคล้องกับรูปแบบของแถวรายการ


    Code
    var args = new Object();
    args['result'] = '{"amount":"1","category":"Medical","claim":"","purpose":"a","date":"11/18/2015","formattedAmount":"$ 1.00"}';
  3. Based on the identifier in #1, call the FormGrid's add method to add a new row.

    ตามตัวระบุใน # 1 เรียกใช้วิธีการเพิ่มของ FormGrid เพื่อเพิ่มแถวใหม่

    Code
    // the field id is "entries"
    var field = FormUtil.getField("entries");
    var functionName = window[field.attr("id") + "_add"];
    if(typeof functionName === 'function') {
        var args = new Object();
        args['result'] = '{"amount":"1","category":"Medical","claim":"","purpose":"a","date":"11/18/2015","formattedAmount":"$ 1.00"}';
        functionName(args);
    }

Related Tutorial

บทแนะนำที่เกี่ยวข้อง





  • No labels