The label and display for a read only display plug-in are not aligned
The label and display for a read only display plug-in are not aligned
mike92117
Posts: 40Questions: 12Answers: 1
in Extensions
How can I make the NTU value and label align? I'm using the "read only display" plug-in described in the docs. See screenshot.
dataType: 'json',
fields: [{
label: "Name",
name: "Name"
}, {
label: "NTU",
name: "NTU",
type: "display"
}, {
label: "DPic",
name: "DPic"
}, {
This question has an accepted answers - jump to answer
Answers
It looks like some CSS such as:
is needed there. Here is a little example.
Allan
Thanks Allan.