Select to view content in your preferred language

Move eSearch link the top of the results table

320
3
Jump to solution
01-29-2018 03:41 PM
CCWeedcontrol
Regular Contributor

How can i move the eSearch hyperlink to the top of the results table instead of the bottom?

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

CC,

   In the List.js file find line 182 and change it to add "first" as the third parameter:

          domConstruct.place(linksDiv, div, "first");

View solution in original post

0 Kudos
3 Replies
RobertScheitlin__GISP
MVP Emeritus

CC,

   In the List.js file find line 182 and change it to add "first" as the third parameter:

          domConstruct.place(linksDiv, div, "first");
0 Kudos
CCWeedcontrol
Regular Contributor

Awesome, one more thank how can you make the link text bigger and bold?

In comparison to the attributes text it's rather small.

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

CC,

   I the widgets css style.css find the .search-list-Item .labellink rule and add lines 7 and 8 below:

.search-list-item .labellink {
    padding-left: 40px;
    padding-right: 10px;
    padding-bottom: 3px;
    cursor: pointer;
    outline: none;
    font-weight: bold;
    font-size: 12pt;
}

Don't forget to mark this question as answered by clicking on the "Mark Correct" link on the reply that answered your question.