- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2015 02:08 AM
To create a Project there is a UI page named create_project
Used <g:dialog_buttons_ok_cancel ok="return makeChanges()" ok_type="button" cancel_type="button" /> this macro for showing OK and CANCEL button
Now I want to hide CANCEL button only...
Where should I hide it on Macro or on UI page and how to hide it??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2015 10:57 PM
Hi Sajan,
Use UI Developer tool like firebug to get id of cancel button and then use css in your ui macro to hide this button like below .
<style>
#<id>{
display : none ;
}
</style>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2015 03:08 AM
Hi Berny,
thanks for replying
I modified as per the given syntax.. its hiding the CANCEL button but after clicking on OK it is not creating Project
Thank you,
Sajan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2024 10:31 PM
@bernyalvarado can I get the jelly script for only cancel button
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2025 12:07 PM
no it's only for Ok button