Storing and re-using term definitions in content

Hello,
I'm in the early stages of developing a site using ALUI. My agency is customer-service oriented, and there are some terms on our site that we would like to set up a means for our viewers to quickly access the definition to these terms. Our preferred method would be to store the various terms and their associated definitions, and have our readers be able to view the definition for a term by hovering their mouse over the term.
I understand that using the hover script would be a separate item using CSS and/or XHTML; however, I'd like to verify that there is a means to store the definitions in ALUI, and if there is a method by which stored definitions could be called into my content items by some sort of in-code command.
Any advice on what components in ALUI (if any) that could be used to achieve this approach would be greatly appreciated.
Thanks,
Brian

Creating objects and calling methods are explained here: http://java.sun.com/docs/books/tutorial/index.html
"Getting Started" and "Learning the Java Language" should give you the basics.

Similar Messages

  • Using term set as refiner in content search web part does not show all used terms

    When you create a terms set (12 terms with +/- 10-20 child terms) , attach it to a site column and allow multiple values to be selected the search service does not find all used values in the REFINERS tab of the content search web part.
    Example:
    Field ‘Tags’ is the term set which can be refined. We want to do this in the REFINERS tab of the content search web part.
    Tags is containing following fields:
    •Course document
    •Poster
    •ALS
    •Before
    •During
    •CPR/AED I
    In all libraries we used +/- 15 different tags already.
    Example of a tag field in the library:   "Poster;ALS;Belgium"
    The problem is we can’t see all of the used tags in the refiners tab when you open it for the first time.  (You can see Belgium or Cyprus is not in the list of tags.)
    When you select one tag and add it as a refiner, the others eventually do show up. But never all of them together.   It’s like he is only showing the most used (and maybe first selected?) tags first. I also think he might be having some trouble
    with multi value selections in the tag field.
     Does anyone else have the same issue as we do? And is there a solution already?

    Hi Sasha,
    According to your description, my understanding is that all the used terms cannot display in the Refiners in Content Search web part.
    If the results display in the Search Result Preview, then the terms used in these results can be displayed in the Refiners tab.
    I tested the same scenario per your post, and when I first opened it I can view all the terms which were used in the search results listed under owsmetadatafacetinfo.
    I recommend to do a full crawl and then you can view all the terms used in the search results are displayed under owsmetadatafacetinfo.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Is it possible to set up Time Capsule on one network and then access its stored data (movies) using Back to My Mac from another network that also has Apple TV to play them?

    I recently purchased a Time Capsule to store data at my office.  I have an Apple TV at my home that I would like to start using to play my movies.  With the storage of the new Time Capsule, I am curious if I can somehow store my iTunes movies on the Time Capsule at my office and then use Back to My Mac to access the TC from my home and then play them via Apple TV.  Does this sound possible?  We have an iMac at the office that remains on 24/7 connected to the TC.

    ATV cannot play movies from the TC, even if it is on your home network.. ATV is a streamer.. it is not a media player.. and the TC is a dumb as a board hard disk in a router.. so it has nothing in it either.
    You cannot play movies from ATV without itunes, which streams to the ATV.
    If the iMac is running 24/7 then you should be able to connect to the iMac remotely and run from iTunes on that, which could then play movies stored on the TC.. with the following issues.. if you use wireless on the iMac forget it. The iMac has to be ethernet connected as it has to pick up the movie on the library and play it back to the TC to network to your home.
    The next issues is speed of slowest connection.
    Your download to your home maybe great.. what is the upload speed from your office like??
    If you pay for uploads and downloads you will pay for the movie 3x.. first to download it.. second to upload it.. office to net..  and third to download it again.. net to home..  Sorry but it is better to play the movie directly from online itunes store.
    If you plan to try and play non-itunes movies over the connection, it won't work.. ATV as stated is linked to itunes and cannot play movie files.
    Overall this sounds like you need to think it out a bit more.

  • Does home sharing allow my husband and I to share our itunes content?  If so, how do we do that since it requires the use of the same Apple ID and password on each device to do so.  His itunes is linked to his email and mine is linked to my email...

    Does home sharing allow my husband and I to share our iTunes content?  If so, how does this work?  From what I've read to use home sharing the devices/computers all require the same Apple ID and password.  My husbands iTunes is linked to his email/password and mine is my email/password.  So if that's the case how to we go about sharing?  God I hope that makes sense.

    All apps are forever tied to the Apple ID that bought them. To stop your id from popping up, you need to delete the apps on his phone, and then repurchase them under his account.

  • Problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2

    Hi experts,
    I'm getting problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2.
    I have a scenario where is defined the document type ZC1, document part 200, authorization group 0002 and for all of these  documents the storage category "Cofre DMS1". And the status which demands the storage category is 'FR'.
    I've been fullfiling the BAPI_DOCUMENT_CREATE2 in this way:
    "Tables
    data: it_doc like bapi_doc_draw2,
          it_return like bapiret2,
          it_files like bapi_doc_files2 occurs 0 with header line,
          it_objs like bapi_doc_drad occurs 0 with header line.
    "Variables
    data: wl_doctype like bapi_doc_draw2-documenttype,
          wl_docnumber like bapi_doc_draw2-documentnumber,
          wl_docpart like bapi_doc_draw2-documentpart,
          wl_docversion like bapi_doc_draw2-documentversion.
    it_doc-documenttype = 'ZC1'.
    it_doc-documentpart = '200'.
    it_doc-documentversion = '00'.
    it_doc-description = 'Test of documents creation via BAPI'.
    it_doc-username = sy-uname.
    it_doc-statusextern = 'FR'.
    it_doc-authoritygroup = '0002'.
    refresh it_files[].
    clear it_files.
    it_files-originaltype = '1'.
    it_files-storagecategory = 'Cofre DMS1'.
    it_files-wsapplication = 'PDF'.
    it_files-docfile = 'c:\110307.pdf'.
    it_files-description = 'Test file'.
    append it_files.
    refresh it_objs[].
    clear it_objs.
    it_objs-objecttype = 'EKPO'.
    it_objs-objectkey = '47000497600010'.
    append it_objs.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
      EXPORTING
        documentdata = it_doc
      IMPORTING
        documenttype = wl_doctype
        documentnumber = wl_docnumber
        documentpart = wl_docpart
        documentversion = wl_docversion
        return = it_return
      TABLES
        objectlinks = it_objs
        documentfiles = it_files.
    After execute the BAPI process I got the following error:
    E26 087 - Data carrier COFRE DMS1 not defined
    Does anybody have a sugestion to help me, please?
    Thks
    David
    Edited by: David Tsutsui on Mar 18, 2010 10:52 AM

    Please refer to this thread, it tells why you need a data carrier you can also configure the same in DC20.
    Data Carriers for Storage the Originals of DMS

  • I can't accept iTunes store terms and conditions using my iPhone...

    I can't accept iTunes store terms and conditions using my iPhone... It means there's no possibility to downoad any new app from the store...

    Have you tried to restore it?If you have important data,back it up and restore it after entering DFU Mode.OR TRY TO RESTART YOUR PHONE.Google DFU MODE if you dont understand.Cheers!!!

  • Is there anyway I could hook my Apple TV to my (non apple) lap to and essentially use my lap top as my tv. In other words use my computer screen to view content of y Apple TV

    Is there anyway I could hook my Apple TV to my (non apple) lap to and essentially use my lap top as my tv. In other words use my computer screen to view content of y Apple TV

    Nevermind I just installed it to try it and it's awesome, so happy right now, Thanks. All the things I had read about it on third party sites led me to believe it could not do extended desk tops, thanks for your help!

  • Just upgraded to lateste verison of Firefox and started using the Tab groups. Like them, but noticed that Save all bookmarks is now gone. How do I save all my bookmark stored inside the tab groups?

    I am using Firefox 6.0 (and still using windows XP ). I have a habit of opening tons of tabs and the new Tab group feature seems perfect for me. But I couldn't find anywhere to save all my tabs as the Save all bookmarks is now gone. How do I save all my bookmarks stored inside the tab groups?
    thanks

    I had to restart firefox because of an update and I saved all my tabs and when I restarted firefox it has lost all of my saved bookmarks...won't be using the new tab groups again..very disappointed

  • How to find the columns and tables used in a stored procedure?

    Hi,
    Can someone suggest how to find the columns and tables used within a stored procedure?
    Thanks
    VBK

    For example:
    SQL> create or replace
      2    procedure p1
      3      is
      4          cnt number;
      5      begin
      6          select count(*) into cnt from emp;
      7  end;
      8  /
    Procedure created.
    SQL> select  referenced_owner,
      2          referenced_name
      3    from  dba_dependencies
      4    where owner = 'SCOTT'
      5      and name = 'P1'
      6      and referenced_type = 'TABLE'
      7  /
    REFERENCED_OWNER               REFERENCED_NAME
    SCOTT                          EMP
    SQL> SY.

  • I work in a public library and we have two ipod touch and two ipod nanos we would like to circulate for our patrons. Any advice on how we can do this? Should we allow patrons to set the device up for personal use or download static content?

    I work in a public library and we have two ipod touch and two ipod nanos we would like to circulate for our patrons. Any advice on how we can do this? Should we allow patrons to set the device up for personal use or download static content?

    With the Nanos, you should have no problem lending them loaded with audiobooks from Librivox, etc.
    As for the iPod Touches, I'm not sure the question is whether you should allow patrons to set up the device for personal accounts, but whether you can prevent them from doing so. Prepare to to a factory restore every time one is returned.

  • Recently I erased an iPhone 3 so that it could be passed on and used by someone else, using the erase all content and settings feature. This has killed my iPhone and it is now stuck on the Apple logo. I have tried a restore in iTunes but recovery fails.

    Recently I erased an iPhone 3 so that it could be passed on and used by someone else, using the erase all content and settings feature. This has killed my iPhone and it is now stuck on the Apple logo. I have tried a restore in iTunes but recovery fails. This is not a jailbroken iPhone. Anyone have any suggestions on how to proceed?

    If you haven't already tried, see if you can force it into recovery mode to restore it:
    http://support.apple.com/kb/ht1808.  If that doesn't work, the last thing you can try is to put it in DFU mode to restore it: https://discussions.apple.com/thread/2648467?threadID=2648467&tstart=0.

  • Why my iphone produces a bug after it renew for OS5.1.1. The bug is when I use message, type a Chinese word, and then using a releveant word, then the program automately closes. Every time I try the same procedure, it definitely closes.

    Why my iphone produces a bug after it renew for OS5.1.1. The bug is when I use message, type a Chinese word, and then using a releveant word, then the program automately closes. Every time I try the same procedure, it definitely closes.

    Nobody knows? Not even administrators?
    Please it would be really nice to have help on that to take all the benefit of the remote app.
    Thank you very much in advance.

  • How do you burn videos taken with myIphone and stored on my computer to a DVD disc.  I purchased and tried using RealPlayer Plus 16 but got error message saying "unsopported media type"?  I alos tried using Real Players file converter with no success!

    How do you burn videos taken with my Iphone 4S and stored on my computer to a DVD disc.  I purchased and tried using RealPlayer Plus 16 but got error message saying "unsopported media type"?  I also tried using Real Players file converter with no success!  Thanks in advance for any help you can give!

    Probably the OP is no longer paying attention to this unless the OP is subscribed to this discussion.  While not really an iPhone question I guess using an iPhone to produce the movie which then needs taking to the next step makes this as good a starting place as any unless you happen to know enough about what to do to determine in which forum to post.  A suggestion in that direction would help.
    Anyway, Apple is backing off from supporting optical media.  It also depends upon what you mean by "DVD".  A DVD is just an optical disc which can support different file formats, but many people think it means a movie disc you can put in your TV.  Producing a movie disc requires special iDVD authoring software Apple used to sell but stopped several years ago.  I don't know if the old versions work under newer systems.  There's also the free Burn application which authors DVDs but takes a bit of learning and has nowhere near the features of iDVD.
    If the OP means simply burning the transferred movie files to a DVD for archiving in computer format you don't need special software for that; its built into the operating system File > New Burn folder etc.

  • Licence terms and Permitted use

    Hello,
    I'm just trying to get my head around how the licencing for Sun Studio Creator works. The SDN website just seems to say that the tool is free. I have had a quick look at the licence agreement howerver and I saw this passage:
    3.  Permitted Use.
    As selected in your Entitlement, one or more of the
    following Permitted Uses will apply to your use of Software.
    Unless you have an Entitlement that expressly permits it,
    you may not use Software for any of the other Permitted
    Uses.  If you don't have an Entitlement, or if your
    Entitlement doesn't cover additional software delivered to
    you, then such software is for your Evaluation Use.
    (a) Evaluation Use.  You may evaluate Software internally
    for a period of 90 days from your first use.
    (b) Research and Instructional Use.  You may use Software
    internally to design, develop and test, and also to provide
    instruction on such uses.
    (c) Individual Use.  You may use Software internally for
    personal, individual use.
    (d) Commercial Use.  You may use Software internally for
    your own commercial purposes.
    (e) Service Provider Use.  You may make Software
    functionality accessible (but not by providing Software
    itself or through outsourcing services) to your end users in
    an extranet deployment, but not to your affiliated companies
    or to government agencies.I've not seen anywhere what the entitlement when you download it is. So does this mean that it is usable for evaluation purposes only? if so what is the comercial cost of it?
    Thanks for any help you can give,
    Regards,
    Dan.

    Intresting topic, in the top of the license agreement it says:
    Permitted Use:
    1) Sun Java Studio Creator 2: Provided that You are
    registered with the Sun Developer Network, You may reproduce
    and use SJS Creator 2 for Individual, Commercial, or
    Research and Instructional Use for the purposes of
    designing, developing, and testing Your applets and
    applications ("Programs"), conditioned on your compliance
    with the Additional Terms below.
    2) Sun Java System Application Server Platform Edition 8.2:
    Provided that You are registered with the Sun Developer
    Network, You may reproduce and use App Server 8.2 for
    Service Provider Use.
    I can say for sure that Sun Java Studio Creator 2 is free of charge and this is ofcourse excluding support which you can get in several options: http://www.sun.com/service/serviceplans/developer/index.xml

  • TS3989 Since I unloaded os7 and started using I cloud, the photos taken are smaller. when you look through the viewer of the I phone, I have lines top and bottom. In short, the pictured I'm now taking are smaller with not as much content. Any one have any

    Since I unloaded OS7 and started using I cloud, the photos taken are smaller. The picture doesn't take up the whole viewer of the I phone. Therfe is a line,top and bottom. Any suggestions?

    Hi shldr2thewheel,
         it has been a while since we have last spoke, I would like to let you know, I am still working on getting used to the switch from windows to a Mac/Apple system. I do have a new question for you, I did purchase In Design CS5.5 through journeyed.com through Cuyahoga Community College of which I attend as a student, is there a way to purchase an online book through iTunes to learn that as well? Also, you know me, the struggling student, I would also, when and if the book can be purchased through the iTunes, would need to know if you do know of a much easier book for struggling students like myself and at a reasonable price as well for the In Design CS5.5 program. Our campus bookstore had closed early, and, so did the colleges library and our local library here where I do live, so, I cannot go to either place to purchase a book or to take out a book, plus cash funds are low at this moment as well but, I do have money left on the iTunes account to use, if it can be used. So, can it be used, the iTunes money, towards finding a low priced online book? I am in great need of assistance as I have a project due for my one course for this Tuesday, September 4, 2012.
    Sincerely in need of help once again,
    Kim

Maybe you are looking for

  • Can I use a current number as my online number?

    Hello! I'm interested in setting up an online number for my business, and I already have a phone number being used as my work number. If I could switch my current number to the online number, that would be amazing so that I don't have to change my nu

  • IFS Access from Portal (Sample Portlets)?

    Just wondering if there are any sample JSP/Servlet Portlets floating around illustrating access to iFS (9.0.3 cmsdk) for document storage/management. Something that is a true portlet that lives properly within a portal environment would be ideal. tha

  • Jerry-can

    multiple documents contained in the one PDF file. how to save a single document from this file to another folder?

  • Error Loading Rate data through Data Manger Pakage

    Hi all, I wanted to load the Rate data so I uploaded my excel file on the server and it was successful. Even when I preview the data file it shows me first 200 records but when I run the  Data Manger Pakage, I see the following error in the status. T

  • Macintosh HD icon gone, did 10.5.2 correct this problem?

    So i have been involved in this particular discussion for a while, I believe its the invisibles issue ("v" to "V") that has made my Macintosh HD icon on my desktop disappear. Did 10.5.2 correct this??