Bookmark Widget - disable the [Delete] button

1166
5
Jump to solution
10-27-2017 10:06 AM
Shauna-RaeBrown
Occasional Contributor

I'd like to remove or disable the "Delete" button in the Bookmark Widget in the Web AppBuilder Developer Edition.  Does anyone know how to do this?  Where in the code can I remove or disable the delete button? Thanks for your help.

1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Shauna-Rae,

  Just add this new css rule to the widgets css\style.css:

.jimu-r-row.play-section.footer {
  display: none;
}

View solution in original post

5 Replies
RickeyFight
MVP Regular Contributor

You could always hide it with the css

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Shauna-Rae,

   WAB 2.5 or 2.6 or another version?

0 Kudos
Shauna-RaeBrown
Occasional Contributor

I'm using WAB DevEd 2.5.  I've tried to look through the CSS, but I've gotten very confused.  Thanks for your help.

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Shauna-Rae,

  Just add this new css rule to the widgets css\style.css:

.jimu-r-row.play-section.footer {
  display: none;
}
Shauna-RaeBrown
Occasional Contributor

Robert,

THANKS A MILLION!!!  That worked.  I've wanted to get rid of that button for a couple of years now.  PERFECT!

0 Kudos