If you want to add images to the first/last next/previous buttons of the gridDTC, then you may find the following code useful:
sub <myPage>_onenter()
'set images for the grid navigation buttons
with grdIssueList.getPagingNavbar()
with .getButton(0)
.setStyle 1
.src = "../images/first.gif"
.alt = "First"
end with
with .getButton(1)
.setStyle 1
.src = "../images/back.gif"
.alt = "Prev"
end with
with .getButton(2)
.setStyle 1
.src = "../images/next.gif"
.alt = "Next"
end with
with .getButton(3)
.setStyle 1
.src = "../images/last.gif"
.alt = "Last"
end with
end with
end sub
To add rollover images, then see the other FAQ that shows how to extend the PushButtonDTC to include the rollover feature. Then in each section above, add a
.rollover_src = "../images/first_01.gif"
or whatever the image is called.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.