Add a link from image in web app

I need to add a link to social media site in a static image in a web app detail layout.
I have thought this would be...
<a href="{tag_facebook}"><img alt="" src="/_assets/css/images/social-facebook.png" /></a>
but this displays the link bedside the icon.
I have tried field type "Text string (Hyperlink)" and "Text string (String)".
any help appreciated.
thanks megan

Hey Liam,
Franchise list of stores added to a web app abd each store can have a different link added to the icon.
The icon is hard coded into the layout
The url needs to change for each
e.g. 15 Stores, some have their own Facebook page, some will link to a central Facebook page.
So the icon is static in the web app detail layout, but url changes.
When I add the code
<a href="{tag_facebook}"><img alt="" src="/_assets/css/images/social-facebook.png" />
the result in browser looks like...
thanks Liam

Similar Messages

  • Any way to add a link FROM HomePage TO iWeb?

    Any way to add a link FROM HomePage TO iWeb? The instruction I found in Help only discussed adding a link from iWeb to HomePage. Since most of my family already accesses my HomePage, I'd like to be able to add a link to the iWeb pages
    This is the only instruction I've been able to find in connection with this topic: "If you’ve previously published webpages using HomePage, those pages are still available at http://homepage.mac.com/YourMemberName. Websites you create in iWeb are available at http://web.mac.com/YourMemberName/iweb/SiteName. If you’ve created webpages using the .Mac HomePage feature, you can put a link to your old homepage on the first page of your new iWeb site. On your iDisk, your HomePage sites are stored in the Sites folder. Your iWeb sites are in the Web folder."
    Thanks
        I use both my Mac and my Dell

    I'll try this, but why in the world should it be so complex? I'll let you know if it works. but how do we tell Apple/Mac that this shouldn't be rocket science, but rather something that's done with the click of a button. They're both .mac software products. Why can't they talk to each other?
    B
        I use both my Mac and my Dell

  • How do I show/refresh data from an Access Web App in an Excel spreadsheet saved in a Document Library on Sharepoint 2013 online

    I have an Access 2013 Web App in my Sharepoint 2013 online website. It contains a query to report on its data (several, actually, but let's keep it simple). I want to connect an Excel spreadsheet to the query, visualise the data in pivot tables/graphs/whatever,
    save the spreadsheet in a Document Library, and let other team site Sharepoint users open the spreadsheet (preferably in Excel online, but with Excel client if it has to be) and see/copy the data, refreshed with the latest information from the Access Web App.
    Simple, surely!
    The way I'm doing it at the moment is to create an ODC file to connect to the cloud-based Access 2013 database, save that ODC in a Data Connection Library in the SP site, and use the saved ODC file as data source in the Excel spreadsheet. This works and
    successfully keeps everything 'in the cloud' but I can't get it to refresh in Excel Online, and if I open the spreadsheet in Excel Client I have to enter the database password every time to refresh it. I don't really want to issue this password to everyone
    who might want to view the data. There must be a better way than this ODC method, I suspect.
    Googlings on this have led down various blind alleys - Excel Services, PowerPivots, Web Parts - but I'm stuck on which to follow through. Please, someone, point me to an article/book/website that explains how to do this step-by-step in simple language..
    thanks
    Jonathan

    I don't see any quick way of achieving it - at least there's no such functionality exists in SharePoint. All you can do, develop an event receiver that will update the fields in the list item once the excel file is added/updated. You can use OpenXml API
    to manipulate the excel file.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • I upgraded to Firefox 8.0.1 on may MacBook OSX 10.6.8 and not all files I download from my Outlook Web app are ashx file, not what they were originally sent in. How do I change this ?

    I have just upgraded to Firefox 8.0.1 on may MacBook (10.6.8) and now all files I download from my Outlook Web app labeled attachment.ashx, not as they were originally sent (.docx, .pdf, etc). How do I change this back?

    I'm going to back up to Firefox 7 next. I'm getting the drift that 8.0.1 and/or flash on 8.0.1 are unstable.
    I'll let you know if that solves this problem.
    NOPE. This had no effect.

  • Add/Delete elements from viewcontaineruielement in web dynpro abap

    Dear all,
    Please let me know how to Add/Delete elements from viewcontaineruielement in web dynpro abap? I have copied a viewcontaineruielement from another program and now i dont want few elements from that viewcontaineruielement in my view. Please guide

    Hi Ajinkya,
    I have copied a viewcontaineruielement from another program and now i dont want few elements from that viewcontaineruielement in my view. Please guide
    Have you saved that VC element as template and using that template in another component?.If so,on resuing that VC element template it populates all the screen elements which you've save as template.
    Now, select that VC element which you've re-used,based on you're requirement add/remove UI elements as Kiran suggested.
    Hope it will resolve your issue.
    Thanks
    KH

  • Should the Edit in Browser link appear when Office Web Apps is read only?

    Hi,
    We have deployed an Office Web Apps farm in read only mode for licensing reasons.
    There is a binding between SharePoint 2013 and the Office Web Apps farm, everything is working well, except the option to Edit Office documents using Office Web Apps is quite prominent on the ECB menus and document previews.
    Is anyone able to advise whether this is expected behaviour? When the link is clicked a friendly error message states that licensing doesn't support editing, which is correct. I'm just trying to see if the user experience can be improved by a setting that
    we've missed somewhere along the line.
    Thanks in advance.

    Hi,
    Per my knowledge, if you have configured Office Web Apps for SharePoint, the Edit in Browser option will appear in the ECB menu regardless of the licensing of the Office Web Apps.
    So I recommend to use CSS code to hide the Edit in Browser option if you do not want the user to use it.
    Edit the page of the document library view page, and then add a Content Editor web part to the page.
    After that add the code below to the Content Editor web part:
    <style>
    a[Title="Edit in Browser"]{
    display:none !important;
    </style>
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Auto log in from applet to web app.

    I'm trying to allow a user to jump from an applet to a web app.
    The applet code I'm pretty sure is complete. It creates a URL and then calls container().getAppletContext().showDocument(new URL(path),name);
    This opens a browser and seems to be sending the correct URL.
    What I have done is send it to a URL like /appName/JumpFromApplet
    Then I have created a filter in the web app to catch anything of that format.
    The doFilter method is being executed and it the if statement is catching it appropriately.
    But when the browser opens up the url is just http://localhost:9080/ with a page cannot be found. I'm not sure what I'm doing wrong. Here is the appropriate code. Am I way off base?
    private static final String LOGGEDIN_URL = "login.do";
    //inside doFilter method
    Object o = httpRequest.getSession().getAttribute("LOGGEDIN");
    if(o == null && url != null
             && url.indexOf(JUMP) > 0) {
         config.getServletContext().getRequestDispatcher(LOGGEDIN_URL).forward(request, response);
    }else {
         chain.doFilter(request, response);
    }edit:
    This is basically the same code as in my LoginFilter, I just changed the URL and of course the if statement.
    Edited by: gmachamer on Jan 22, 2008 9:05 AM

    hmmm, strange. I added the code to the loginFilter as an else if.
    If I enter the url in the browser that the filter is suppose to be catching then it works just fine.
    If I jump from the applet it does not... but when stepping through the code in both instances it looks like everything is the same?
    the else if is what is executed.
    public void doFilter(ServletRequest request, ServletResponse response,
            FilterChain chain) throws IOException, ServletException {
        HttpServletRequest httpRequest = (HttpServletRequest) request;
        Object o = httpRequest.getSession().getAttribute("LOGGEDIN");
        String url = httpRequest.getRequestURL().toString();
        if (o != null
                || (url != null && (url.indexOf(LOGIN_URL) > 0
                        || url.indexOf(LOGIN_FORM_URL) > 0
                        || url.indexOf(EXTERNAL_LOGIN_URL) > 0
                        || url.indexOf(EXTERNAL_LOGIN_FORM_URL) > 0
                        || url.indexOf("images") > 0 || url.indexOf(services) > 0))) {
            chain.doFilter(request, response);
            return;
        }else if(o == null && url != null
                  && url.indexOf(JUMP) > 0) {
              config.getServletContext().getRequestDispatcher("/" + JUMP_URL).forward(request, response);
            return;
        config.getServletContext().getRequestDispatcher("/" + LOGIN_FORM_URL)
                .forward(request, response);
    }Edited by: gmachamer on Jan 22, 2008 9:43 AM

  • Updating a SharePoint Calendar and sending email notifications based on information from an Access Web App

    Hi MSDN Forum,
    I have created an Access Web App that I am hoping to add some functionality to. I am looking to provide email notification to different users from my organization (a field within the Access Table) when the current date approaches the renewal date (another
    field within the Access Table). I would also like to display all renewal dates on a SharePoint Calendar for users to see. Any advice on how to do this would be much appreciated.
    Thanks!

    I'm not familiar with how Access Web Apps work. However, on the SharePoint side of things, it looks like a workflow will be your best bet. Are you using Visual Studio? I've created a few tutorials on sending email notifications in Visual Studio 2012. https://youtu.be/JFdiQEyDkEk

  • Links from Mail and other apps don't go to open copy of Firefox but attempt to open a second copy, so I get "A copy of Firefox is already open," FF 22, OS10.8.4

    Links from within Firefox windows open new tab, but links within Mail, MSWord, and other apps attempt to open another copy of Firefox, and I get the "Close Firefox: A copy of Firefox is already open. Only one copy of Firefox can be open at a time." This just started happening less than a week ago. I don't know when FF updated to version 22.0.

    My problem seems to be fixed--I cannot reproduce it now, though it had been consistently happening for the past 3-4 days. The suggestions above do not seem to apply in any case: I do not want to open another instance of Firefox but simply to connect with the one that is already running; and I do not seem to have a .parentlock file.
    If the problem returns, I'll be back. Meanwhile, thanks for the suggestions.

  • No vector images in web-app for iPhone !?

    Hello
    I am developping a web-app for the iPhone
    as the bandwith is low (in edge mode) I want to use vector images instead of bitmaps (gif, png ...)
    - but flash (.swf) is not supported
    - SVG is not supported, only Canvas is supported
    - but no "Canvas editor" is available (I don’t want to draw icones using hundreds of javascript lines ! )
    - and no "SVG,SWF -> Canvas" convertor is available
    Am I wrong ?
    Is there any solution ?
    Is 1.1.3 now solving the problem (SVG now supported ?)
    thank you for your help
    Michel

    additional remark:
    I made some tests, a vectorized icon could be 30 times smaller (and therefore faster to load) than its ".png" version !
    15ko in edge mode = about 1 second to wait ...

  • Link from Image map to other dashboard or report

    People,
    I have made a image prompt of the following picture:
    [http://img208.imageshack.us/img208/9007/imagemap.jpg]
    At this moment i can only link to a value in a column with this code:
         <saw:area coords="632,481,967,497" title="2002" shape="rect" column="Time.Year" value="2002/>
    the link works but its just/still in the same dashboard/report and thats not what i want.
    I want to open an other dashboard or report.
    Anyone know how thats possible? i cant find something usefull
    Kind regards
    MK

    dear gerardnice,
    Sorry for mis understanding but yes i read your links, thanks for that.
    I am a newbie with OBIEE, iiam learning now :)
    I think ur answer is that what i need but i dont know how to use it in OBIEE Answers.
    I have no problems to make a image prompt. I would like to know how to put a link to another dashboard when u click on the link with the coords "314,54,487,72" see example below
    <saw:report xmlns:saw="com.siebel.analytics.web/report/v1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlVersion="200705140" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawx="com.siebel.analytics.web/expression/v1">
    <saw:criteria subjectArea="&quot;Key Performance Indicatoren&quot;">
    <saw:columns>
    <saw:column formula="KPI.Afdelingsnaam" columnID="c0"/></saw:columns></saw:criteria>
    <saw:views currentView="0">
    <saw:view xsi:type="saw:compoundView" name="compoundView!1" rptViewVers="200510010">
    <saw:cvTable>
    <saw:cvRow>
    <saw:cvCell viewName="titleView!1">
    <saw:displayFormat/></saw:cvCell></saw:cvRow>
    <saw:cvRow>
    <saw:cvCell viewName="tableView!1">
    <saw:displayFormat/></saw:cvCell></saw:cvRow></saw:cvTable></saw:view>
    <saw:view xsi:type="saw:titleView" name="titleView!1" rptViewVers="200510010"/>
    <saw:view xsi:type="saw:tableView" name="tableView!1" rptViewVers="200510010"/></saw:views>
    <saw:prompts>
    <saw:view xsi:type="saw:imageMapPrompt" imageURL="link to image">
    <saw:promptDescription>
    <saw:caption>
    <saw:text>Afdeling prompt</saw:text></saw:caption></saw:promptDescription>
    <saw:areas>
         <saw:area coords="314,54,487,72" title="FTZ" shape="rect" column="KPI.Afdelingsnaam" value="FTZ"/>
         <saw:area coords="632,73,967,89" title="Postverwerking" shape="rect" column="KPI.Afdelingsnaam" value="POST"/>
    </saw:areas></saw:view></saw:prompts></saw:report>

  • How add a link of other page web

    Good Night,
    How can add a link in the ESS in the area of travel that can call other application WEB external?
    Kind Regards.

    FOr Adding services check following link
    ESS / MSS Configuration (SAP Best Practicesfor SAP HCM V2.600) (N06)
    http://help.sap.com/bp_hcmv1600/BBLibrary/Documentation/N06_BB_ConfigGuide_EN_US.doc

  • Forwarding from servlet in web app...

              I'm having a problem forwarding to a page within a web application. Basically if I do:
              getServletContext().getRequestDispatcher("/login.htm").forward(request,response);
              then the page isn't found as the forward doesn't put the web application context into the URL. I can work round this by using:
              request.getContextPath()
              and then building up the path with the web application in it.
              This becomes a real pain too with static HTML pages. If the pages have links in them which are absolute, again the web application context is not prefixed.
              Am I missing something here? I was under the impression that the deployment of web applications was supposed to be transparant to the components within them.
              Any help would be appreciated. I'm running on WLS 6 on W2K.
              Cheers,
              Andy
              

    Andy,
              I'm haivng the same problem! I'm working with getting Jive (the open-source
              discussion board product) to work with WLS. This software is full of
              response.sendRedirect calls that are relative. These all fail with WLS 6.
              Jeff Mathers
              "Andy Winskill" <[email protected]> wrote in message
              news:[email protected]...
              >
              > I should follow the flow of my servlet better.....
              >
              > The main problem is with request.sendRedirect not working with a relative
              URL. Forwarding to an absolute URL in a web app works fine. However,
              absolute links in a HTML page are absolute with respect to the server and
              not the web application.
              >
              > Cheers,
              > Andy
              >
              > "Andy Winskill" <[email protected]> wrote:
              > >
              > >I'm having a problem forwarding to a page within a web application.
              Basically if I do:
              > >
              >
              >getServletContext().getRequestDispatcher("/login.htm").forward(request,resp
              onse);
              > >
              > >then the page isn't found as the forward doesn't put the web application
              context into the URL. I can work round this by using:
              > >
              > >request.getContextPath()
              > >
              > >and then building up the path with the web application in it.
              > >
              > >This becomes a real pain too with static HTML pages. If the pages have
              links in them which are absolute, again the web application context is not
              prefixed.
              > >
              > >Am I missing something here? I was under the impression that the
              deployment of web applications was supposed to be transparant to the
              components within them.
              > >
              > >Any help would be appreciated. I'm running on WLS 6 on W2K.
              > >
              > >Cheers,
              > >Andy
              >
              

  • How do I add a reply form to a Web App?

    I am building a webapp that allows the client to submit work requests for updates to their website as there are far too many people involved in email and it gets confusing very quickly.
    I have figured out how to have them submit a web app item and view the details of that item, but I would like to have a simple web form that allows the client to reply to a web app item and have the result of that show up on the detail page of the web app item. Is this possible to do? I would really appreciate some help on this. Thanks.

    If by 'have the result of that show up on the detail page' you are reffering to the contents of the reply, then, off the top of my head, what you could do is make use of CRM Cases!
    ie;
    Create a workflow (let's call the workflow 'appReplies')
    Create a form and attach it to the appRelies workflow.
    Place the form where needed.
    Place the relevant case module in the app detail view eg {module_case,c,xxxxx}
    @webmosphere
    www.webmosphere.co.uk

  • Including output in a JSP page from a separate Web App

              I seem to be having a bit of a problem including the output from a sevlet invoked
              from a separate
              Web Application in the same domain. I have a servlet callsed 'WebApp2\Web-inf\classes\packagename\targetServlet'.
              I am attempting to invoke 'targetServlet' from 'WebApp1\somepage.jsp' using the
              jsp:include directive but I seem
              to be having a path problem because the servlet is not invoked. Anyone have any
              suggestions?
              

              Mark:
              You cannot do that with <jsp:include>. You can read the JSP spec to learn more
              about it.
              Anyway, there are some tags out there that do allow what you need. I, for one,
              use Struts' <bean:include> tag. See http://jakarta.apache.org/struts/
              The new JSTL (JSP Standard Tag Library - http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html)
              provides the <c:import> tag.
              Greetings
              "Mark Andersen" <[email protected]> wrote:
              >
              >I seem to be having a bit of a problem including the output from a sevlet
              >invoked
              >from a separate
              >Web Application in the same domain. I have a servlet callsed 'WebApp2\Web-inf\classes\packagename\targetServlet'.
              >I am attempting to invoke 'targetServlet' from 'WebApp1\somepage.jsp'
              >using the
              >jsp:include directive but I seem
              >to be having a path problem because the servlet is not invoked. Anyone
              >have any
              >suggestions?
              

Maybe you are looking for