Show or Hide the icons in a report column in APEX

Hi All,
I have a requirement to show or Hide a Delete Icon in my report.
Condition is whenever the transfer is completed, then the user should not see the Delete Icon for that particular row of the report. I.E. for example if there are 5 rows in the report, and for 2 rows the value of the Transfer is NULL, then the Delete icon should be appear to the user. If the value for the column transfer is Not Null for remaining 3 rows, then the user should not be able to see the Delete Icon.
For this I did like below,
In the report, I edited the Del_Icon and Selected 'Value of the Item/Column in Expression1 is NULL' and entered 'Transferred' in Expression1 in Conditional Display area. But even if the value for Transfer column is 'Transferred', the Delete Icon is still appearing for that row.
Can someone please let me know where can be the mistake is?
Please let me know if you require more info.
Actually in the application if we go to Transfer Page, there is an option to create a row for Transfer page. There is a column Transfer, If we do not enter any value for the column Transfer and submit the page, the record will be created and the Delete Icon should be appear. If I update the row in the application and provide some value, and click submit button, then the Delete Icon should not appear.
Edited by: 980540 on Apr 2, 2013 5:08 AM

You can do one thing, check the condition in the report sql itself and display the image
select case
            when transfer is null then '<a onclick="f_func()"><img src="#APP_IMAGES#img"></a>'
            else null
            end col1,
         col2
from tableI have used "APP_IMAGES" you can changes it accordingly.
and the <a> tag should be like this *<a onclick="f_func()"*
in the javascript function you can submit the page using apex.submit('REQUEST') and condition your delete process on the REQUEST.
Regards,
Tauceef

Similar Messages

  • Show and hide Lov icons and Date Picker image on conditional?

    How to show and hide Lov icons and Date Picker image on conditional?

    Why do you just want to make the icons conditional? Shouldn't the field also be conditional?
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts- 18   movies need to go-.

    How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts… 18 plus movies need to go….  Thank you.

    Instead of removing the music from the cloud or the iTunes library why not shuffle your music using a Smart Playlist which excludes the holiday music, or tracks that are not checked. For example, use this very simple Smart Playlist:

  • After I updated my 2 Iphones  and one Itopuch the bluetooth on one of the phones and the Itouch will not stay on. When you go to the general settings to turn it on it shows on but the icon disapears when you go to home scree or leave general seetings.

    After I updated my two Iphone 4's and my Itouch bluetooth problem occurred on two of the three devices.  One of the phones and the itouch will not keep the bluetooth on.  When you go to the general settings to turn it on it show on and the icon pops up but as soon as you leave the general settings the icon disappears and will not show up in the home screen.  It will not pair with any devices.   It will search for and find them but won't pair because the icon will not show up meaning it is off. What can i do to fix this problem that I believe was caused by the update.

    Sounds like we have a similar problem.  Four days ago I was playing music through a wireless Bose speaker via bluetooth and everything was fine.  Then I was texting while listening and got 2 texts about the same time as I was typing one and my phone went black.  I pushed the home button and it worked, went into my texts and all were there.  However ever since then the time isn't right, so it can't keep time no matter what I do.  The bluetooth works only at times, the wifi keeps jumping on and off, sometimes my data won't work and the other day I couldn't even turn it off, so had to wait until it died.  The battery life display at that moment wasn't correct either.  Took to Verizon, they couldn't help.  Suggested a factory reset, which I did last night and still the same issues!  One day I couldn't even text my husband on his iPhone.  Just wouldn't work at all.  Did everything suggest and still not good.  Seems like after stalking these pages today a lot of people are having this problem in Dec/Jan and of course also I'm 3 weeks out of my 1 year warranty and so were many others, by days.  Very strange, and all on the 5C.  What did you do?  Is it working now?

  • My ipod mini is showing Three of the icons and wont work.

    My ipod mini is showing Three of the icons and wont work. Its showing the uncharged icon when plugged into my computer but when i plug it in to the wall, the apple comes and then swithes to the sad ipod icon. Before it goes back to the apple it shows the icon for the battery with an exclamation piont for like 1/2 a second. It repeats. The ipod has been telling me attempting to copy failed. could not be read from or written to for like 6 months but i just press sync again and it works. today it did that but then another box came up that said could not be read from or written to file or directory has been corrupted. then i restored it and it wouldnt let me press only sync checked items. so i had to drag songs to the ipod to get them on it and i was listening to it and a song stoped at six seconds and i ptressed skip and it didnt change for like 20 min so i reset it and now its doing this. does it need serviced? is it worth it or should i get a new one?

    The first thing is to check for corrpt files. So go to my computer and open the iPod drive and post a screen cap of the files. Do a couple of different ones...like one of the main drive page and then one of iPod_Control and one of the iPod_Control Music folder.
    Here is what my "dirty" drive looked like:
    The circled files (with the exception of # 12) are the ones that I ended up deleting.
    and here are the fixed drives
    In order to show some of the files, you have to go to the top of the page, press "tools", "folder options", "view" and then "show hidden files and folders".
    When you go to the music folder and delete excess files, you don't need to worry about loosing your music because it's all safe on iTunes.
    You could also try changing the letter drive, details here: http://docs.info.apple.com/article.html?artnum=93499

  • I have added audio to my PDF. How do I hide the icon?

    I have added audio to my PDF. How do I hide the icon?

    Thanks
    I have just changed the size of it to very small instead so that it doesn't dominate so much and set it on auto play and am happy with that.
    Thanks again

  • Wda How dynamic the show or hide the window

    Hello
    wda How dynamic the show and hide the window.
    thank you

    Hi Sarah,
    For any webdynpro queries , post it under Application server->Webdybnpro-ABAP OR JAVA forum.
    You can hide the entire group by binding a attribute to the visible property of the group.
    if lv_i_text is initial.
    * to set GROUP hidden
          lo_el_context->set_attribute(
            name =  `VIS_GRP`    " Attribute name in the context binded to visible property of the group.
            value =  'X' ).
    endif.
    I hope it solves your problem.
    Regards,
    Kiruba

  • How do I temporarily hide the icons at the bottom of the screen?

    How do I temorarily hide all icons at bottom of screen?

    Open Dock preferences:
    Check the box near the bottom labeled, "Automatically hide and show Dock."

  • How to show or publish the TFS - SQL Server Reporting Services reports in SharePoint dashboard?

    Hello,
    We have configured SharePoint site and SSRS for a team project.
    Foll. is the SharePoint site for the team project. When we click on the REPORTS link, it redirects us to the SQL Server Reporting Services website.
    My question is: How can I show or publish the reports from  SQL Server Reporting Services into SharePoint so that I can view the reports on SharePoint dashboard rather than having to go to the SSRS URL?

    Hi Nachiket,
    If you configure Reporting service for your TFS, then you can view the reports in report manger site when you click click report on Team Explorer. And SharePoint is a collaboration website product that offers deep integration with Office products like Word,
    Outlook, and Excel. You can save your team project related files in your SharePoint site. Check this
    page for more details.
    If you want to view reports that generated by reporting service on your SharePoint site, you might need to save the report in Excel and upload it to SharePoint site.
    Best regards, 

  • How To Auto Hide the Icon Panels in Photoshop CS6?

    I did go to the preferences and changed the icon panel to hide but it does not work... I also did what is suggested and exited the program to activate any changes and it still does  not work.  I've seen folks who produce tuts with this feature so I know its possible.
    Thanks....

    So you saying if you have the preference Auto-Collapse Iconic Panels checked and have a panel expanded from the collasped panels that
    clicking somewhere in the document area doesn't collaspe the panel back to an icon?

  • How can i hide the icons on my desktop

    I have some folders that I placed on my desktop for now trying to organize them however I don't want to see the icons. How do I hide them.

    This makes no sense to me.  If you hide them how can you organize them.  Please explain further what you are trying to accomplish.
    You can open the desktop in the Finder and change the view to "list view"

  • ScreenSharing--Can you hide the icon?

    Is it possible for an administrator to hide the "ScreenSharing" icon in the menu bar of the computer that is being shared?
    I would like to be able to quietly monitor what my young kids are doing on the internet and on an upstairs computer.

    I think the best you can do is command+drag it off the menu bar after the screen sharing session starts. but it will appear at the beginning of the session.

  • Even though new photo image shows up in the icon box in the lower corner of the camera screen, the photo did not save to any albums or places on iPhone 5s with ios8.02 update. Happened three times now so I know it is not operator error!

    where did my photo go? Three times now I have taken a photo, and can see the image in the little icon box on the camera screen. I click on the icon to use the photo to share, but the photo is nowhere to be found. Sometimes the image is retrievable but three times today alone, no image came up in camera roll, even though image is in the little icon. What is happening?

    Hello again... I have the 5S with current capacity of 56 GB and available space of 28GB.  (I have several big big rule books and pdf files for work on the phone).  There are currently a total of 1627 photos (yes, I know that's a lot...but there used to be even MORE, and I had no problems before ios 8.02) on the phone, and I have done routine purges and deletes and backups to my PC and the Cloud.
    When I did the first update to ios 8.0, of course, I found out quickly that photostream and camera roll disappeared, but I was smart enough to figure out that the upgrade created the folder "recently added" and I was able to reinstall the Cloud on my PC and my photos are streaming nicely to the PC and my Ipads (two of them) when I get home to wifi.
    Then I did the ios 8.02 upgrade last week.  Used my phone to take photos this past weekend while away on a trip, and darn, one of the photos that I really needed, disappeared.  I thought perhaps that the problem was "operator error" by the person who took the photo of me.  But then last night, I was taking some photos and lo and behold, the same thing happened to me...twice...... the photo image was in the little "icon" box, and I wanted to "share it".  So, I touch the icon of the photo, but the photo did not appear in the "recently added" bunch of photos.  The previous photo was there.  I took another photo, and it appeared normally in the "recently added".  <shrug>. Took a few more photos, and once more... the icon showed the image, but no image was in the "recently added" folder.
    That's all that I know as of now......  today... no problems.  all photos (took about 20) all appeared in "recently added" as they should.
    ~T

  • Mail doesn't show images, just the icons eg. .jpeg, .jpg, .png etc.

    iMac 24" OS X 10.7.5 Lion, my Mail ver. 5.3 does not show images anymore, just the icon attachments, eg. .jpeg, .jpg, .png etc.
    I can click on them and use the open with context menu and open them but they just open as attachments not lined up to the email body as they have always been in the past.
    What can I do to get these images back to where they belong?
    Thanks,
    Jerry

    Open Terminal in Applications>Utilities and paste this in. Then hit return.
    defaults write com.apple.mail DisableInlineAttachmentViewing 0
    To reverse the setting, change the 0 to a 1.

  • My iPad2 is showing duplicates of the icons for apps on my home screen (where the app store and other default apps reside)??? How do I get back to normal?

    My iPad2 has suddenly begun displaying duplicates of the icons on my home screen all stacked atop one another in the upper left corner.  What can I do to return to normal operation?

    Try this.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

Maybe you are looking for

  • Error in the creation of function module

    hi,         pls help me i am getting the error "Only tables with simple line structure are   allowed in RFC" pls give me solution to solve this problem.

  • How can i get rid of Beta and go back to the earlier version?

    Where is the link/command to uninstall the beta version i agreed to try a few weeks ago? Among other issues: i can't read the pale-on-pale buttons and tabs; crashes regularly; creates random pop-ups that block my work and cannot be removed. (i do not

  • New to iMac , how do I save photo's to my computer?

    I just got a i-mac , this is my first mac computer so I am lost. I am trying to save photo's to my computer from a disk and am not sure how to do this. On my old computer I could just right click and save the image but I can not do that on the mac. t

  • IPhoto Library Manager for organizing iPhoto Librabies

    Hi! For those who use iPhoto Library Manager and have multiple libraries, what have you found to be the best way to set up/organize a library? By subject? By year(s)? And where do you store your libraries? On your HD or on an external HD? Thanks! iMa

  • .m4u files access block

    hi, i've copied songs on the itune of my friend and some of the songs are block. i need my friend passwd to play them and i cant change them from .m4u to .mp3 (those who are block only)because if i change their extention, they wont work anymore.