将字符串附加到datatables值并将值包装在类中

时间:2016-02-24 16:01:51

标签: jquery datatables

如何将字符串附加到jquery.DataTables中的值?例如我想展示public unsafe byte[] UsReadBytes(int offset, int num) { byte[] arr = new byte[num]; byte* ptr = (byte*)0; this.accessor.SafeMemoryMappedViewHandle.AcquirePointer(ref ptr); Marshal.Copy(IntPtr.Add(new IntPtr(ptr), offset), arr, 0, num); this.accessor.SafeMemoryMappedViewHandle.ReleasePointer(); return arr; } 而不是print $totalRows - $v; 。数据来自一个对象数组,其中百分比是十进制数而不是字符串。

此外,是否可以围绕一个值包装一个类,(例如,我可以将红色的数字设为减去数字)?

1 个答案:

答案 0 :(得分:0)

数据表的文档不尽如人意。有些挖掘出了一个接受格式化函数的列的render属性,所以在dataTable初始化对象中:

columns: [
    {title: "Shown %", data: 'percent', render: function(data, type, full, meta) {return data + "%"}},
]

这也解答了如何围绕样式的值包装范围!