Hi
The expand widget in 4.16 works fine in normal large view. But brings a drawer like panel when the screen size is small (Mobile Display). I want to keep the same normal expand irrespective of the screen size. how can i make it please.
Solved! Go to Solution.
You can define the expand.mode to match what you what you are looking for.
Expand | ArcGIS API for JavaScript 4.17
const expand = new Expand({
content: widget,
mode: "floating"
});
You can define the expand.mode to match what you what you are looking for.
Expand | ArcGIS API for JavaScript 4.17
const expand = new Expand({
content: widget,
mode: "floating"
});
Thanks.