jquery jtable子表标题缩进

时间:2014-09-12 21:28:21

标签: javascript jquery alignment jquery-jtable

我正在使用jquery.jtable,我有一行在openChildTable中调用jquery.jtable.js方法。

我试图找到一种缩进子表标题的方法。这是创建表的代码:

function getResponseChildTable(ContainerID) {
    var table = {
        title: '',
        width: '5%',
        sorting: false,
        edit: false,
        create: false,
        display: function(data) {
            //create an image to be used to open child table
            var $img = $('<img src="' + config.base_url + 'assets/images/expand_row-small.png" title="View Responses" style="height:30px;width:30px;cursor:pointer;" height="30" width="30"/>');
            $img.click(function() {
                $('#' + ContainerID).jtable('openChildTable',
                        $img.closest('tr'),
                        {
                            title: 'Response Plans',
                            actions: {
                                listAction: config.base_url + "data_fetch/responses/" + data.record.risk_id
                            },
                            messages: defaultResponseMessages,
                            fields: getResponseFieldsSmall()
                        }, function(data) {//opened handler
                    data.childTable.jtable('load');
                });
            });
            //return image to show on row
            return $img;
        }
    };
    return table;
}

我尝试添加一个样式属性并设置左边距以将其向侧面移动,但这并没有成功。也许我做错了。所以所有建议都表示赞赏。我发布了评论中的内容链接。

我是jquery.jtablejs的新手,请原谅我的错误。

1 个答案:

答案 0 :(得分:0)

我能够使用CSS解决问题。