Select to view content in your preferred language

Customize the "Filter By Map Extension" button of the Attribute Table widget

1523
1
Jump to solution
01-31-2017 10:00 AM
GilbertoMatos
Frequent Contributor

Hello!

Is there any way to customize the "Filter By Map Extension" button of the Attribute Table widget, for example by placing the red background when clicked / marked, and the blue background when it is unchecked? I could not find which css to change for this.

Thank you!

Gilberto.

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Gilberto,

   You would add css rules to the  style.css in the AttributeTable widget:

.jimu-widget-attributetable .dijitToggleButton .dijitButtonText {
  color: #ffffff !important;
}
.jimu-widget-attributetable .dijitToggleButton.dijitToggleButtonChecked .dijitButtonNode{
  background-color: #ff0000 !important;
}
.jimu-widget-attributetable .dijitToolbar .dijitToggleButton .dijitButtonNode {
    border-width: 0;
    padding: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #0000ff;
}

By the way, when you have a Question you should start a new Question, Not a new Discussion.

View solution in original post

0 Kudos
1 Reply
RobertScheitlin__GISP
MVP Emeritus

Gilberto,

   You would add css rules to the  style.css in the AttributeTable widget:

.jimu-widget-attributetable .dijitToggleButton .dijitButtonText {
  color: #ffffff !important;
}
.jimu-widget-attributetable .dijitToggleButton.dijitToggleButtonChecked .dijitButtonNode{
  background-color: #ff0000 !important;
}
.jimu-widget-attributetable .dijitToolbar .dijitToggleButton .dijitButtonNode {
    border-width: 0;
    padding: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #0000ff;
}

By the way, when you have a Question you should start a new Question, Not a new Discussion.

0 Kudos