To Hide Native Link for Images

Hi,
Whenever i check-in a content as image in content server,i get the rendition information for the same.That rendition information contains the native link option ,which i want to hide.How can i hide that link or the rendition information tab itself.If you have the answer please let me know.

Hi siyavuş
You can do this by taking the edit link off the report and putting it into your report SQL.
Use something like Select CASE WHEN (condition)  THEN
'Put your edit link in here as an html Anchor like<a href="(target)">Edit</a>'
ELSE
tt.value
END edit_link
FROM test_table tthope it helps,
Gus..
You can reward this reply (and those of other helpers) by marking it as either Helpful or Correct.
This allows forum users to quickly find the correct answer.
;-)

Similar Messages

  • How to hide edit link for  some rows in report? (according to value of col)

    Helo,
    How to hide edit link for some rows in report? (according to value of column)
    regards
    siyavuş

    Hi siyavuş
    You can do this by taking the edit link off the report and putting it into your report SQL.
    Use something like Select CASE WHEN (condition)  THEN
    'Put your edit link in here as an html Anchor like<a href="(target)">Edit</a>'
    ELSE
    tt.value
    END edit_link
    FROM test_table tthope it helps,
    Gus..
    You can reward this reply (and those of other helpers) by marking it as either Helpful or Correct.
    This allows forum users to quickly find the correct answer.
    ;-)

  • Does anyone have a good link for images I can access for my web development work. I have Adobe Creative SUite 5.5

    Does anyone have a good link for images I can access for my web development work. I have Adobe Creative Suite 5.5

    In short, NO.
    I was hoping that the 7.4.1 update would allow it to work, but it has caused more problems than it is worth.If you do actually get it to work you will see the TC in finder (under Shared) when connected to the internet outside of your home network. What I have found though is that the 7.4.1 firmware update has made using the internet at home almost impossible.
    I have tried Hamachi but it is not reliable.
    I have settled with Dropbox so my files are synced between my home machine and laptop.

  • Download link for images

    What is the solution to create a download link that will
    automatically start to download to the hard disk or ask where to be
    saved (ie. Desktop, Downloads)? What I don't want to happen is to
    have the image open in a new browser window. I have .eps, .tif and
    .jpg files. Is this hard to do? I can't find any help anywhere on
    the net for this problem.

    .oO(A Dion Lainy)
    >What is the solution to create a download link that will
    automatically start to
    >download to the hard disk or ask where to be saved (ie.
    Desktop, Downloads)?
    >What I don't want to happen is to have the image open in
    a new browser window.
    >I have .eps, .tif and .jpg files. Is this hard to do? I
    can't find any help
    >anywhere on the net for this problem.
    Well, usually the preferred way is to just link to the image
    or another
    file and let the browser/user decide what do with it.
    If you still want to "force" a download, the easiest way for
    you as the
    author is to simply zip the file(s). In most cases this will
    cause a
    download dialog, but also creates another hurdle for the
    user, because
    he has to unpack the file before he can use it.
    Another way - a bit more complicated for you, but much easier
    for the
    users - would be to deliver the files with another content
    type like
    "application/octet-stream". This should also cause a download
    dialog.
    How to do that depends on the capabilities of your server. It
    can be
    done with scripting or even with just a simple AddType
    directive in an
    .htaccess file on Apache servers.
    Micha

  • Creating null links for image swap

    I have this problem with Internet Explorer 6 for PC which
    moves the webpage to the top of the browser whenever the swap image
    ref is clicked. It will do this if the link is set to #, if it is
    set to javascript:; then IE wont display the image which I think
    has something to do with preloading. SO, does anyone know another
    null link style I could use. I'm working in Dreamweaver CS3 for
    Mac.

    Show us your code, and I'll show you how to fix it.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "danfb08" <[email protected]> wrote in
    message
    news:g95qcq$abv$[email protected]..
    >I have this problem with Internet Explorer 6 for PC which
    moves the webpage
    >to
    > the top of the browser whenever the swap image ref is
    clicked. It will do
    > this
    > if the link is set to #, if it is set to javascript:;
    then IE wont display
    > the
    > image which I think has something to do with preloading.
    SO, does anyone
    > know
    > another null link style I could use. I'm working in
    Dreamweaver CS3 for
    > Mac.
    >

  • Spry Image Slideshow- how to make a clickable link for images

    I have the slideshow on my site and it works fine but I need to allow a user to click on the larger images and for that to open up an external site in a new window. How is this possible given that currently when you click on an image you just get the Pause and Start events?
    Thank you.

    Yes.... You can put other things besides strings into JOptionPanes. Such as you can put a JEditorPane that displays some HTML, which can in turn have links in it. Or buttons that look like links.
    But I've also had problems in modal dialogs in some cases where clicking the links in HTML doesn't work correctly (the HyperTextEvent doesn't get fired).
    As for same effect... Well, it's usually more complicated than that. Applets are simple (Applet.showDocument(), or AppletContext, whatever it is). Otherwise you need to do something different. Search the forums for posts on launching URLs from applications, there's plenty o' info.

  • Exclude One Link for Select Few IP Addresses

    Hello, I just created a new Muse internal website for my organization. I have been asked to exclude one certain link off my homepage for a select few IP addresses (Servers). Support tells me that this is possible, but they are not allowed to help, and I was told I need to post to this. So yeah that is what I am needing to do. Help would be much appreciated!
    Thanks In Advance
    Matt

    Hi Matt,
    You first need to find the IP of the client for which you need to implement some server side coding for example php and then hide the link if the client's IP matches the one in the list. This is just an example code below.
    <script>
         <?php
              //Include all the IPs that you need to hide the link for here
              $ip_list = array('1.1.1.1','2.2.2.2','3.3.3.3');
              $hide_link = false;
              if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
                   if(in_array((string)$_SERVER['HTTP_X_FORWARDED_FOR'],$ip_list)) {
                        $hide_link = true;
              } else if(isset($_SERVER['REMOTE_ADDR'])) {
                             if(in_array((string)$_SERVER['REMOTE_ADDR'],$ip_list)) {
                                  $hide_link = true;
              if($hide_link) {
                   echo "var hide_link = true";
         ?>
         if (typeof hide_link != 'undefined') {
              document.getElementById("id" /*Type the id assigned to the link here inside quotes*/).style.display = 'none';
    </script>
    - Abhishek Maurya
    Message was edited by: Abhishek Maurya

  • In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    Please don't post the same question multiple times!

  • How to read ZIP files(having PDFs,Image) using MQ Series link for R/3

    Hi,
    1)Is it possible to transfer a zip file (having an image or pdf) using IDocs in SAP 4.6C using MQ Series link for R/?
    Scenario: "MQ Series link for R/3" converts Business-Reports from a third-party software,into SAP IDocs.Each Business-Report contains one XML file and one ZIP file.
    2)Being on ABAP side,do I have to worry about how the zip file would be converted into IDocs?
    Detailed descrption:
    This scenario requires integration of a non-SAP software which talks in XML with SAP R/3(4.6C).The customer has decided to go with 'MQ Series link for R/3' (which integrates any non-SAP application running on IBM MQ Series to R/3,by converting data(in any format) into IDocs).He is not ready to go for XI.
    The Problem area is a functionality which requires the non-SAP software to send XML file along with an attached Zip file.So,XML document,basically,has a 'zippedFile' XML element having actual file in XML keyword 'file'.
    This XML document ideally, should be converted by the subsystem(MQSeries link for R/3) into IDocs i.e. into a stream which could be stored in a table on R/3 side and later, sent back to the non-SAP software through MQ Series link to be converted into zip-file again with corresponding pdfs,images.I want someone who has worked in a similar scenario to confirm this.

    Hi,
    I have a feeling I have posted this question in the wrong forum or maybe I will let you decide this.Any help would be appreciated (even the right forum name).
    My scenario requires integration of a non-SAP software which talks in XML with SAP R/3(4.6C).The customer has decided to go with 'MQ Series link for R/3' (which integrates any non-SAP application running on IBM MQ Series to R/3,by converting data(in any format) into IDocs).He is not ready to go for XI.
    The Problem area is a functionality which requires the non-SAP software to send XML file along with an attached Zip file.So,XML document,basically,has a 'zippedFile' XML element having actual file in XML keyword 'file'.
    This XML document ideally, should be converted by the subsystem(MQSeries link for R/3) into IDocs i.e. into a stream which could be stored in a table on R/3 side and later, sent back to the non-SAP software through MQ Series link to be converted into zip-file again with corresponding pdfs,images.I wanted someone who has worked in a similar scenario to confirm this.

  • Disable link for a Image in Content editor web part

    Hi
    i want to disable hyperlink for a banner added using content editor web part. Instead of hiding using Target Audience, i want to disable the link.
    Please help me how can i achieve this?
    regards,
    Vinay
    Thanks and Regards, vinnu

    Hi Vinay,
    I recommend to disable the link for an image using Jquery in Content Editor web part.
    First, you need to use F12 tool in Internet Explorer(IE) to get the html tag for the image, and you’d better find the class or id value for the tag of the image.
    For example, if the class for the image is test, then the code should be:
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script type="text/javascript">
    $('.test').click(function(e) {
    e.preventDefault();
    </script>
    You can also paste the code of the image here for further research.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Anchor link only for image in table header for sorting

    Hi,
    I need to implement sorting functionality for datatable.
    for sorting header of the table column will have image along with header text.
    for this i am using <h:commandLink> and <h:graphicImage>.
    But i am getting behaviour as anchor link for both text and image.
    deserved behavior for this is only ofr Image.
    If any one implemented the same ..please help me
    Regards

    Try:
    Sub ClearKeepWNext()
    Dim Tbl As Table, i As Long
    For Each Tbl In ActiveDocument.Tables
      With Tbl
        .Range.ParagraphFormat.KeepWithNext = False
        For i = 1 To .Rows.Count
          With .Rows(i)
            If .HeadingFormat = True Then
              .Range.ParagraphFormat.KeepWithNext = True
            Else
              Exit For
            End If
          End With
        Next
      End With
    Next
    End Sub
    If the tables only have a single heading row, you could instead use:
    Sub ClearKeepWNext()
    Dim Tbl As Table
    For Each Tbl In ActiveDocument.Tables
      With Tbl
        .Range.ParagraphFormat.KeepWithNext = False
        With .Rows(1)
          If .HeadingFormat = True Then
            .AllowBreakAcrossPages = False
          End If
        End With
      End With
    Next
    End Sub
    Cheers
    Paul Edstein
    [MS MVP - Word]

  • How to keep Anchor links for all small piece of Images in a BIG Image?

    Hey,
    I have a Bigger Image, in which I have some number of Images (created it through Fireworks)..
    Now I need a links to all those piece images
    For more info: pls check my actual thread here: http://forums.adobe.com/message/4695100#4695100
    Hoping for quick soln..
    Thanx!

    HI,
    I just did what mentioned in that link, i was able to create an image with links..
    BUT my requirement is quite different:   Iam using Nivo Slider JQuery Plugin in which Iam thinking to place an Images in which it displays some 3 products in each images.. so If I place 3 images, it means it displays 9 products (3 products in each Image).. that means, there should be 3 differnt anchor links in each image and total 9 anchor links for 3 images.
    I guess iam clear.. BUT iam not sure whether this is POSSSIBLE practically or not..
    COuld you please suggest whether this is possible or not..?
    FYI, here is a  jqurey plugin you can get freely: http://nivo.dev7studios.com/
    I will be glad if anyone helps me out in this..
    Thanks!

  • How can you make an image an hotspot link for an email or paypal account?

    I have completed my first website using fireworks first then dragging it to dreamweaver cs6. My client is ready to launch their site. Two issues. I am literally trying to hotspot link an image for an email and paypal account. A few of my friends who are also website designers are having the same issue. Can this problem be solved so I can get paid?

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <img src="FlightMiracle.fw.png" width="1600" height="3000" usemap="#Map" border="0" />
    <map name="Map" id="Map">
      <area shape="rect" coords="1281,34,1396,69" href="#mailto:[email protected]" alt="Contact" />
      <area shape="rect" coords="1001,27,1163,71" href="#&lt;form target=&quot;paypal&quot; action=&quot;https://www.paypal.com/cgi-bin/webscr" method=&quot;post&quot;&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;cmd&quot; value=&quot;_s-xclick&quot;&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;hosted_button_id&quot; value=&quot;XDVDENF8NGXZN&quot;&gt;
    &lt;input type=&quot;image&quot; src=&quot;http://www.flightmiracle.com" border=&quot;0&quot; name=&quot;submit&quot; alt=&quot;PayPal - The safer, easier way to pay online!&quot;&gt;
    &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width=&quot;1&quot; height=&quot;1&quot;&gt;
    &lt;/form&gt;
    " alt="Cart" />
      <area shape="rect" coords="1206,263,1422,307" href="#&lt;form target=&quot;paypal&quot; action=&quot;https://www.paypal.com/cgi-bin/webscr" method=&quot;post&quot;&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;cmd&quot; value=&quot;_s-xclick&quot;&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;hosted_button_id&quot; value=&quot;XDVDENF8NGXZN&quot;&gt;
    &lt;input type=&quot;image&quot; src=&quot;http://www.flightmiracle.com" border=&quot;0&quot; name=&quot;submit&quot; alt=&quot;PayPal - The safer, easier way to pay online!&quot;&gt;
    &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width=&quot;1&quot; height=&quot;1&quot;&gt;
    &lt;/form&gt;
    " alt="cart" />
      <area shape="rect" coords="1185,32,1271,77" href="#fmabout" />
    </map>
    </body>
    </html>

  • Search for broken links to images

    Is there an efficient way to search for broken links to
    images?

    Hi there
    I'm not sure if you are meaning to ask about links inside
    topics that point to images that you are popping up or linking to
    outright or if instead, you mean that some of the images that are
    supposed to be displayed inside topics are maybe missing and you
    wish to know about them.
    One easy way to spot a missing image reference is by using
    the Project Manager. Not sure if you are using RoboHelp 7, 8 or
    older here, but if on 7 or 8 look in the Project Manager pod.
    Otherwise it will be found on the left panel of the application.
    Expand the Images pseudo folder and quickly scan the list of images
    and expand sub folders inside. Any missing image should be listed
    with a red x to indicate the status. You may then examine the image
    properties to see which topic(s) is/are still referencing it.
    Cheers... Rick

  • What is "native resolution" for my mac mini G4?

    I'm going to buy a 22" Samsung monitor with 1920 x 1080 resolution specs for the mac mini, PPC G4 model. I realize the resolution can be adjusted on the computer, and I need the refresh rate lower than the specified 154mhz limit for "cohesive" monitors. That aside, I remember a term "native resolution for the Mac" and I'm thinking this is, for comparison sake, where the mac should display to make text on a word processing document look 1:1 life size. Also, it will make 1" of graphics appear on 1" of the screen. Am I correct?
    I'm wondering because when I run the Samsung monitor at 1920 x 1080, will I end up with tiny, scaled-down graphics and text? And, if so, will there be an ideal resolution to adjust the monitor to?
    Hope I'm not too clueless on this.... I haven't used a large monitor in some time and don't remember where my 19" CRT used to be set!
    Thanks much for help!

    cocteau3,
    You may be confusing native with default.  The G3 desktop would default to 640 by 480 if you zapped the PRAM.  You then went into monitors and sound to increase the resolution to what ever the monitor would support and the onboard video port would support. 
    Before the days of multi-sync monitors, the resolution was fixed for each monitor.  Until the Mac II, you had a fixed resolution monitor built in.  With the introduction of the NUBUS card, you could buy a card with support for a larger display that was also a fixed resolution. 
    The Mac IIcx had no onboard video.  You bought a NUBUS card for what ever monitor size you wanted.  The card and monitor usually came together.  With the Mac IIci, in an almost identical case, you had an onboard video port plus the option to add up to three nubus video cards.  Native for that onboard video port was now based on the maximum number of pixels that could be supported at thousands of colors or millions of colors.  If you wanted millions of colors, you had to add more VRAM or reduce the matrix from 1024 by 748 to 640 by 480.  Some games had to be at 256 colors because that is how they were programmed.  If you wanted 1024 by 768, you had to settle for thousands of colors, or less color depth than millions.  It was simply math.  How much math could the computer video port handle?
    At our store, in 1999, we had a Quadra 950 set up with five displays.  The onboard video would only support 640 by 480 if you wanted millions of colors.  That was the native size.  Increase the image area (or monitor size) and you decreased the image size.  By having four NUBUS cards installed, you could have five monitors connected at once.  It was very easy to demonstrate that a 20" monitor could display 640 by 480 and have large text - viewable by the visually impared.  A second 20" monitor was set for 1152 by 870 and the text was tiny.  Also displayed was a 17" multi-sync that could change resolution. 
    With the advent of muti-resolution monitors, the idea of 'native resolution' has been replaced by 'supported resolutions.' A monitor may have a default setting but if it is multi-sync, there is no such thing as native.  Just factory default.  Set any size and frequency you like, so long as that frequency is supported.
    This is the best historical link I found:
    http://www.proaxis.com/~ferris/docs/dpi-monitor.html
    Note that 72dpi was convertable to typesetting because of that long forgotten concept of desktop publishing.
    Finally, you can have a large display set at 1600 x 1200 to display many windows and have one window zoomed in to show text at 200%.  So many variables that native is not as useful as twenty years ago.
    Ji~m

Maybe you are looking for

  • Read Unicode string entry out of MS-Access though Java

    I'm making a small Finnish Dictionary programme use Java,so i first need to test if I can display those Unicoded Finnish words from Access to Java. Those words reads well from my FFF.mdb by Java,but when print out on the screen,some Unicode character

  • Delivery-related billing for TAS : take VPRS value from GR or Invoice

    Hello, One my customers currently invoices stock items and Third-Party Items separately. He now wishes to invoice both items together. In Third-Party standard flow no delivery is needed. In order to invoice both items together I have now activated th

  • HI function module to pop up error message

    hi can you tell me a functional module that can be used to generate a pop up of error message . regards avik.

  • :: Replace portmap with core/rpcbind? [Y/n]

    Hello dear Today Morning I Upgrade System with pacman -Syu but it gave me :: Replace portmap with core/rpcbind? [Y/n] Whats is the portmap should i Replace it or Not?. Last edited by arunix (2009-06-24 01:59:53)

  • Headphone volume problem

    I have the Late 2008 Macbook Pro 2.8GHZ. Is there an issue with the volume level when using headphones? The volume in my headphones is too loud only 2 bars away from mute. At 1 bar away from mute it is normal. So basically I have two choices for list