- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2015 04:04 AM
My requirement is,
If state = "Closed", I have to show the UI Action "Re-open" button. Once the user clicks the "Re-open" button i need hide that. Because only once i need to show reopen button visible to user. The second time it should hidden.
Only once i need that Reopen button avialable the second it should be hidden
Thanks in Advance,
Thanks and Regards,
Dinesh Chinnadurai
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2015 04:23 AM
In that case you should use a flag. Flag will nothing but just a field on your table that will not be on your form. Make it true by default and make it false once the reopen is clicked.
And the condition on reopen becomes
current.state== 'state value when it should be visible' && current.flag=='true'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2015 04:19 AM
I need the hide the Re-open button, because once the user clicks that Reopen button i need to hide the button.
Because Reopen is possible only once
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2015 04:22 AM
Try this below one
current.re_open_count >= 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2015 04:19 AM
You can add condition on state
current.state= 'state value when it should be visible' // add or conditions to make it visible on multiple state values
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2015 04:20 AM
I need the hide the Re-open button, because once the user clicks that Reopen button i need to hide the button.
Because Reopen is possible only once
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2015 04:23 AM
In that case you should use a flag. Flag will nothing but just a field on your table that will not be on your form. Make it true by default and make it false once the reopen is clicked.
And the condition on reopen becomes
current.state== 'state value when it should be visible' && current.flag=='true'