Hi;
I have a Simpleform textbox after my uci map. Returning this kills the Save & Apply button (in footer)
The g.(submit,reset) values determine buttons associated with g. Independent of these values, the Save & Apply button associated with the map is missing if g is returned. Reversing the return order of m, g makes no difference so far as the missing button is concerned.
Can anyone enlighten me as to why this is happening and, workarounds.
Thanks;
Bill
uci mapped code...
g = SimpleForm("licensetab", translate("Command Results"), translate("Results of last command."))
g.submit = false
g.reset = false
h = g:field(TextValue, "result")
h.rmempty = true
h.readonly = true
h.rows = 5
return m, g -- Kills buttons
OR
return m -- Buttons OK, no SimpleForm
(Last edited by rossb on 24 Aug 2016, 14:04)