Move location of data selection to first item (top left), reduces redundancy and provides a bit more space for the forthcoming timeseries card. Require making a separate module to obtain datatype, and added an additional named input to the map module.
To retain the original layout of the data summary panel, removed card and used layout_columns(), which loses the outer box.
Also learned through trial and error that one cannot pass the input from one module as the output of another. Or can you, and I just didn't have the right code? If this could be done, then datatype could continue to be returned by input_server(), and the additional named input could be avoided.
Move location of data selection to first item (top left), reduces redundancy and provides a bit more space for the forthcoming timeseries card. Require making a separate module to obtain
datatype
, and added an additional named input to the map module.To retain the original layout of the data summary panel, removed card and used
layout_columns()
, which loses the outer box.Also learned through trial and error that one cannot pass the input from one module as the output of another. Or can you, and I just didn't have the right code? If this could be done, then
datatype
could continue to be returned byinput_server()
, and the additional named input could be avoided.