如何获取jtable中字段的值?

时间:2016-09-03 02:01:32

标签: javascript jquery jquery-jtable

我是jtable的新手,并试图找出如何获得字段的选定值(类型,下拉列表);基于此值,我需要调用Java类并获取字段2的值(价格,输入类型)。

$(document).ready(function() {
var selectedValue = null;
    $('#StudentTableContainer').jtable({
        title : 'Students List',
        actions : {
            listAction : 'Controller?action=list',
            createAction : 'Controller?action=create',
            updateAction: function(postData) {
            var values = [];
            console.log("updating from custom function...");
            return $.Deferred(function($dfd) {
                $.ajax({
                    url: './Controller?action=update',
                    type: 'POST',
  `enter code here`                  dataType: 'json',
                    data: postData,
                    success: function(data) {
                        $.each(data, function(entryindex, entry) {
                          values.push(entry['typeId']);  
                        });
                        alert(values);
                        $dfd.resolve(data);
                    },
                    error: function() {
                        $dfd.reject();
                    }
                });
            });
        },
    deleteAction : 'Controller?action=delete'

        },
        fields : {
            studentId : {
                title : 'Student Id',  
                width : '30%',
                key : true,
                list : true,
                edit : false,
                create : true
            },
            name : {
                title : 'Name',
                width : '30%',
                edit : true
            },

            emailId : {
                title : 'Email',
                width : '20%',
                edit : true
            },
            typeId : {
                title : 'types',
                width : '20%',
                edit : true,
                listClass:'genderClass',
                options: { 'S':'Select','D': 'Dynamic', 'F': 'Fixed', 'C':'Customize' }
            },
            priceId : {
                title : 'Price',
                width : '20%',
                edit : true
            }

        }

 });

});

根据' TypeId'的选择,我需要填充Price的值。我尝试在“updateAction'”中加入一些逻辑,但没有运气。

0 个答案:

没有答案