remove the adress bar in the related table chart

605
2
Jump to solution
11-30-2016 03:01 PM
JuliaGalindo
Occasional Contributor

Hello,

 

Those anyone knows how to remove the address bar form the related table chart widget in the developer web application builder?

Thanks a lot!

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Julia,

   All you need to do is add these two new rules to your apps theme common.css:

(i.e: [install dir]\server\apps\[app#]\themes\FoldableTheme\common.css)

.jimu-widget-RelatedTableCharts .esriCTSearchOuterContainer{
  display: none;
}
.jimu-widget-RelatedTableCharts .esriCTResultsPanel{
  height: 100%;
}

View solution in original post

2 Replies
RobertScheitlin__GISP
MVP Emeritus

Julia,

   All you need to do is add these two new rules to your apps theme common.css:

(i.e: [install dir]\server\apps\[app#]\themes\FoldableTheme\common.css)

.jimu-widget-RelatedTableCharts .esriCTSearchOuterContainer{
  display: none;
}
.jimu-widget-RelatedTableCharts .esriCTResultsPanel{
  height: 100%;
}
JuliaGalindo
Occasional Contributor

Robert,

Thank you so much! Iit worked perfectly!

Regards, 

0 Kudos