Remove option box in WAB Swipe Widget

2369
2
Jump to solution
11-12-2015 01:44 PM
ChrisMathers
Occasional Contributor III

Is there a way in the code to not have the option box pop up? I want swiping to be restricted to a single layer and do not need that box hanging around if I'm not using it. I can make the pick list inoperable but I cant get the whole box to hide.

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Chris,

  Sure just add display: none to the jimu-widget-swipe style.css (line 4).

.jimu-widget-swipe {
  border-radius: 5px;
  max-width: 350px;
  display: none;
}

View solution in original post

2 Replies
RobertScheitlin__GISP
MVP Emeritus

Chris,

  Sure just add display: none to the jimu-widget-swipe style.css (line 4).

.jimu-widget-swipe {
  border-radius: 5px;
  max-width: 350px;
  display: none;
}
ChrisMathers
Occasional Contributor III

Worked like a charm. Thanks Robert.

0 Kudos