XPages - change background color of place bar button

Tony Guiheen

I would like to change the background color of a place bar button when the button is clicked. How can I do this? I have considered using Dojo or JavaScript but I don't see how I can get an "id" for the place bar button.

Michael Saiz

"Another solution like Steve Zavocki in green." This Code is not Using jQuery so you dont have to integrate jQuery.js in your application you can do this using native javascript and dojo wich is already integrated in XPages so you dont have much overhead.

There are other ways to get an element with javascrip:

document.getElementById
dcoument.getElementsBy ClassName, Name, TagName, TagNameNs

with dojo or like Steve used in his code with jQuery:

<xp:button value="ChangeColor" id="button1">
        <xp:eventHandler event="onclick" submit="false">
            <xp:this.script><![CDATA[var placebar = document.getElementsByClassName("lotusPlaceBar")[0]; //place bar should be unique
placebar.style.backgroundColor = "green";
placebar.style.backgroundImage = "none";
//.. more styling;]]></xp:this.script>
        </xp:eventHandler>
</xp:button>

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How to change web browser's tab bar background color or image?

분류에서Dev

Cannot change text and background color of searchbar in navigation bar

분류에서Dev

How to change button color

분류에서Dev

Get button's background color

분류에서Dev

Text element background color change

분류에서Dev

Background color change on page load

분류에서Dev

change background color on webpage jQuery

분류에서Dev

Change button background when clicked

분류에서Dev

Change button color when clicked

분류에서Dev

jfxtras - CalendarPicker change button color

분류에서Dev

<meter> Color Change on Animation Health Bar

분류에서Dev

Change the background color of a layout from the code

분류에서Dev

How to change a font/background color in transparent windows?

분류에서Dev

UITableView change background color of specific cell

분류에서Dev

Change the PS1 color based on the background color?

분류에서Dev

Change Background Image of button when scrolling in android

분류에서Dev

Change foreground color of back button in UWP NavigationView

분류에서Dev

I want to change the color of a button for a few seconds than change it back

분류에서Dev

Remove background color of button pressed and replace with image in Windows Phone 8.1

분류에서Dev

How to change section color of a stacked bar chart in Google Charts API?

분류에서Dev

Change background-position horizontal transition for color on scroll jQuery/CSS

분류에서Dev

knockout-validation change input background color on invalid model

분류에서Dev

Ubuntu SDK QML how to change the background color of TextField

분류에서Dev

MFC VC++: CMFCButton::SetFaceColor does not change background(face) color

분류에서Dev

jQuery checkbox select all and change background color on select

분류에서Dev

How to change background-color of selected option in IE11?

분류에서Dev

How do I permanently change the background color of a row in a Listview?

분류에서Dev

How to Change Button Background Image inside Listbox In Windows Phone 8

분류에서Dev

How to make a Widget change color briefly like a button

Related 관련 기사

  1. 1

    How to change web browser's tab bar background color or image?

  2. 2

    Cannot change text and background color of searchbar in navigation bar

  3. 3

    How to change button color

  4. 4

    Get button's background color

  5. 5

    Text element background color change

  6. 6

    Background color change on page load

  7. 7

    change background color on webpage jQuery

  8. 8

    Change button background when clicked

  9. 9

    Change button color when clicked

  10. 10

    jfxtras - CalendarPicker change button color

  11. 11

    <meter> Color Change on Animation Health Bar

  12. 12

    Change the background color of a layout from the code

  13. 13

    How to change a font/background color in transparent windows?

  14. 14

    UITableView change background color of specific cell

  15. 15

    Change the PS1 color based on the background color?

  16. 16

    Change Background Image of button when scrolling in android

  17. 17

    Change foreground color of back button in UWP NavigationView

  18. 18

    I want to change the color of a button for a few seconds than change it back

  19. 19

    Remove background color of button pressed and replace with image in Windows Phone 8.1

  20. 20

    How to change section color of a stacked bar chart in Google Charts API?

  21. 21

    Change background-position horizontal transition for color on scroll jQuery/CSS

  22. 22

    knockout-validation change input background color on invalid model

  23. 23

    Ubuntu SDK QML how to change the background color of TextField

  24. 24

    MFC VC++: CMFCButton::SetFaceColor does not change background(face) color

  25. 25

    jQuery checkbox select all and change background color on select

  26. 26

    How to change background-color of selected option in IE11?

  27. 27

    How do I permanently change the background color of a row in a Listview?

  28. 28

    How to Change Button Background Image inside Listbox In Windows Phone 8

  29. 29

    How to make a Widget change color briefly like a button

뜨겁다태그

보관