Move form over the panel in Jewelry box theme

1833
5
Jump to solution
05-04-2016 11:47 AM
SebastienPelletier
Occasional Contributor

I develop with the web appbuilder developer and I use the theme Jewelry box.

I wonder if there a way to move a form (example: Mesasure wiget) over the left panel. By default the form is moving under and is hidden by the panel.

Thanx

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Sebastien,

  This may have other adverse effect I have not seen but here is some simple css to fix that:

.map{
  overflow: visible !important;
}

Just add it to the common.css for your server\apps\[app#]\themes\JewelryBoxTheme

View solution in original post

5 Replies
RobertScheitlin__GISP
MVP Emeritus

Sebastien,

  This may have other adverse effect I have not seen but here is some simple css to fix that:

.map{
  overflow: visible !important;
}

Just add it to the common.css for your server\apps\[app#]\themes\JewelryBoxTheme

SebastienPelletier
Occasional Contributor

Thank you Robert , this solution works and very easy to do . But there is a gap with the edge of the application because it is impossible to move a form to the edge (see image).

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Sebastien,

  Yep I can not seem to get past that limit either.

0 Kudos
SebastienPelletier
Occasional Contributor

I found , you must change all the calls to : "this.makeMoveable " method in the file jimu.js \ OnScreenWidgetPanel.js
and change the value 0.25 to the desired value

RobertScheitlin__GISP
MVP Emeritus

Sebastien,

  Glad you got it working. Don't forget to mark this thread as answered by clicking on the "Correct Answer" link on the thread that answered your question.

0 Kudos