如何使字段中心在jtable中对齐。我想使最后一个字段(堆栈:)居中对齐

fields: {
    ID: {
      key: true,
      create: false,
      edit: false,
      list: false
    },
    TID: {
      title: 'Type',
      width: '30%',
      inputClass: 'validate[required]',
      options: <%= DisplayCribOptions() %>
    },
    Number: {
      title: 'Crib No',
      width: '20%'
    },
    Name: {
      title: 'Name',
      width: '20%'
    },
    Stacks: {
      title: 'Configurable Stacks',
      width: '30%'
    }

最佳答案

使用listClass属性将自己的样式添加到字段。

Stacks: {
      title: 'Configurable Stacks',
      width: '30%',
       listClass: 'Stacksalign'

    }


在课堂上定义您的风格

.Stacksalign
{
    text-align: center;
}

关于jquery - jQuery Jtable对齐字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31123611/

10-11 13:18