Update index_m.html

This commit is contained in:
2018-09-26 09:40:31 +08:00
parent 729b72c2fe
commit aeec65527f

View File

@@ -46,6 +46,18 @@
$.each($('.modbus-grid'), function () {
var _id = $(this).attr('id');
var typeItems = [
{value: '', text: ''},
{value: 'uint16be', text: 'Unsigned 16 bit (Big Endian)'},
{value: 'uint16le', text: 'Unsigned 16 bit (Little Endian)'},
{value: 'doublele', text: 'Double (Little Endian)'},
{value: 'string', text: 'String (Zero-end)'},
{value: 'stringle', text: 'String (Little Endian, Zero-end)'},
{value: 'ieee754', text: 'IEEE-754'}
];
var fields = [
{name: '_address' , title: _('Address'), type: 'text', width: '110px', sorter: 'number'},
{name: 'deviceId' , title: _('deviceId'), type: 'text', width: '60px', sorter: 'number'},