Hi all,
I am using PlutoExtras to define groups of NumberFields. I would like to modify the layout and functionality in two ways. First, I would like to left align the labels, and possibly align the labels to the left of the cell. Second, I would like to add a superscripted “?” icon to one of the labels so that more information can be found by hovering the mouse over it. Here is one of my attempts:
begin
using PlutoUI
using PlutoExtras
using HypertextLiteral
end
begin
@bind np PlutoExtras.@NTBond "Title" begin
a = (@htl("<p align='left'>This text will be.</p>"), NumberField(1:10; default=8))
b = (@htl("<p align='left'>T.</p>"), NumberField(1:10; default=8))
end
end
Any help would be appreciated.