Use of Html Collection Renderer - Bulletin Board

Hello,
I wanted to create a Bulletin Board as in the document "How to create a bulletin Board". But when using the navigation iViews with the Html collection renderer. It allways opens a new browser. Isn't it possible to see the next navigation step in the same window?
Is there anybody who tried to make the bulletin Board as in the document?
Can anybody help me with finishing mine.
Thanks

Thanks Darin,
I have tried your suggestion however with no luck.
I have a layout controller that allows a grid on top and a tree list below.  The Grid successfully displays the HTML collection renderer, and the tree-list behaves correctly.
However, if I place a mass command in the HTML collection renderer using the suggested syntax, it does not seem to recognize the command.  I have tried several commands such as copy_admin_mass and move_admin_mass and the link opens an invalid page with the url of http://com.sap.cm/?uicommand=copy_admin_mass
Any thoughts?

Similar Messages

  • Invalid HTML Collection Renderer

    Hi experts,
    I've been trying to implement a HTML Collection Renderer by following the How to configure the HTML Collection Renderer for the KM flexible user interface EP 6.0 SP2. Our system is currently NetWeaver 7.0 SP15.
    The HTML code is copied exactly from the how to document. However, no matter what I tried, I cannot get the HTML to display correctly and Rendering Information (I have enabled debugging setting) in preview iView complains that the layout set assigned (which is based on the HTML Collection Renderer) is invalid and always uses default layoutset instead. Below is the error text:
    Global Information based on Resource </documents/Public Documents/KM Documentation>
    Folder Settings Resource:  /documents/Public Documents/KM Documentation
    Invalid LayoutSet from iView/ URL Parameter:  HTMLandList
    LayoutMode:  force
    Used LayoutSet fromDefaults:  ConsumerExplorer
    In the HTML Collection Renderer, I have the following value as HTML Filename:
    /documents/Public Documents/HTML and List/KMdocinfo.html.
    I also tried specifying complete path from the html file as Portal Favorites link. This relates to another question I also have: Should I try to preview the html file this way? Because I also cannot get image rendered correctly with the internal system URL http://com.sap.cm/, unless I changed it to our portal host name. But from what I read, that seems a fixed syntax that I don't need to worry about.
    Any help would be greatly appreciated.
    Thanks
    Hsiao

    Thanks Darin,
    I have tried your suggestion however with no luck.
    I have a layout controller that allows a grid on top and a tree list below.  The Grid successfully displays the HTML collection renderer, and the tree-list behaves correctly.
    However, if I place a mass command in the HTML collection renderer using the suggested syntax, it does not seem to recognize the command.  I have tried several commands such as copy_admin_mass and move_admin_mass and the link opens an invalid page with the url of http://com.sap.cm/?uicommand=copy_admin_mass
    Any thoughts?

  • Using the HTML collection for EP6 SP11

    I am trying to configure a custom interface using the HTML Collection.
    My problem is that the "How to " guide is for EP6 SP6 and I'm using EP6 SP11 which does not seem to have a place to attach the HTML file I have created to the layout set.
    Can anyone tell me how to do this?

    See How do you create a HTML collection rendered in EP6 SP11

  • Using Keynote as community bulletin board- Can you overlay weather conditions?

    We want to set up a Mac Mini running Keynote 09 to use as our community TV station's bulletin board to run when we are off-air.
    Our old system software was only made for this purpose, so it could bring in (and overlay all the slides) with our local weather temps, etc. via our weather equipment on our roof.
    Is there a way do to this within Keynote while it is playing overnight?
    Thanks!
    Ken Goldenberg

    We want to set up a Mac Mini running Keynote 09 to use as our community TV station's bulletin board to run when we are off-air.
    Our old system software was only made for this purpose, so it could bring in (and overlay all the slides) with our local weather temps, etc. via our weather equipment on our roof.
    Is there a way do to this within Keynote while it is playing overnight?
    Thanks!
    Ken Goldenberg

  • Automatic folder creation fails  ... trying to use the bulletin board tutor

    Hello,
    I would like to create a blog using KMC functionality. For this I found an sdn article on how to create an bulletin board an this tutorial has some functionality I need in the blog too.
    Unfortunately I have some problems when I want to have an folder created automatically. Here are the steps I am doing:
    Creating a folder in the km-content named  /documents/Blog
    In Content-Management > Repository Filters > Userhome Filter+ I created an filter:
    Name: Blog
    Priority:
    URLs: Postings
    Prefix: /documents
    Startpath: /Blog
    Then I created a folder for the km-navigation iview in the portal content. The path to the initial folder is:   /alias/documents/Blog/<user.id>/Postings
    But when I call the preview to see the newly created folder ... I get the error message that the object couldn't be found (translated it means something like):
    Object not found        /alias/documents/Blog/<user.id>/Postings
    Has someone an idea what the reason could be? Is it that the automatic creation of folders is only possible in special folders?Did someone faces the same or an similar problem and could help to solve it?
    Thanks a lot and have a nice weekend,
      Vanessa

    Hello,
    It worked perfectly fine for me.
    Of course only after the restart.
    Regards
    BP

  • GUI Bulletin Board Question

    Hello,
    I want to produce a simple GUI application that mimics a bulletin board. Where there would be a GUI that people could insert a message, and I could allow others to view the past messages and possibly allow some filtering as to what they see.
    I want to go from the GUI window to a text file to hold the past messages. After the text file I will probably move up to a DB, but for now, I think it is a good starter application.
    I am having trouble with the IO class, because of the so many ways to read and write data, and was hoping someone may give me some guidance as to the best way to handle the IO, (which classes) or point me to a tutorial where they are reading a line at a time, and possibly putting them into a collection and then showing it in a GUI.
    I know that is kind of a large question, but any assistance to get me started would be helpful, and then I can refine my questions as I begin building my project.
    Thanks for your time,
    Scott

    Check out:
    http://www.javacoffeebreak.com/java103/java103.html
    and
    http://java.sun.com/docs/books/tutorial/essential/io/index.html
    I used the above links to come up with the above code to write to a file:
    try {
    FileOutputStream out = new FileOutputStream("SearchTableFile.Dat"); // Output file name
    PrintStream p = new PrintStream(out); //Create a stream to write to the file.
    for (int i=0; i<SearchTableFileData.length; i++) {
    p.print(SearchTableFileData); //write data stored in SearchTableFileData Array
    p.print("\n"); // write end of line character.
    // try and catch are error handling
    } catch(IOException ioe) {
    System.out.println("Error: " + ioe);
    To read the file back into the Array I have:
    try {
    DataInputStream in2 = new DataInputStream(
    new FileInputStream("SearchTableFile.Dat")); // Input File Name and Stream
    SearchTableFileData = new String[SearchTableFileLines];
    line = in2.readLine(); //reads first line
    SearchTableFileLines = 0;
    while (line != null) {
    SearchTableFileData[SearchTableFileLines] = line;
    SearchTableFileLines += 1;
    line = in2.readLine(); //reads next line
    in2.close();
    } catch (EOFException e) {
    } catch(IOException ioe) {
    System.out.println("Error: " + ioe);
    Hope this helps. The file reading routine has some variable that are declared elsewhere in the code and I didn't think it was necessary to explain all of them.

  • Bulletin Board Theme Transitions

    Does anyone know why the transitions for the Bulletin Board theme, the transitions aren't of one of the Photo Album transitions. And if so, how they can be changed globally to one of the four Photo Album transitions?
    I'm using iMovie 09
    Thanks,
    Peter

    The file information shows:
    Apple MPEG 4 Decompressor, 960 x 540, millions 16bit, 29.97 fps
    I just watched the rendered quicktime again and noticed that some of the Bulletin board transitions did render later in the movie but at least one transition is not rendering. It is very strange and bit frustrating.
    I am not sure what it could be since it shows in the imovie full screen preview.

  • No Bulletin board exists. Entering in boot mode

    Hello,
    I am getting this error:
    No Bulletin board exists. Entering in boot mode
    And tuxedo does not boot saying Assume pipe for all the servers.
    Thanx in advance

    The AP has been converted to lightweight:
    C1240-K9W8-M
    The K9W8 is lightweight and K9W7 is autonomous.  You need a WLC for the K9W8.  If you have an autonomous image, you can convert it back:
    Using a TFTP Server to Return to a Previous Release
    http://www.cisco.com/en/US/docs/wireless/access_point/conversion/lwapp/upgrade/guide/lwapnote.html#wp160918
    https://supportforums.cisco.com/docs/DOC-18268
    http://www.cisco.com/en/US/docs/wireless/access_point/conversion/lwapp/upgrade/guide/lwapnote.html#wp160918
    http://www.youtube.com/watch?v=QQ_NuxdRhQ4
    https://supportforums.cisco.com/docs/DOC-14960
    Thanks,
    Scott
    *****Help out other by using the rating system and marking answered questions as "Answered"*****

  • TMADMIN_CAT:188: ERROR: Error while obtaining the Bulletin Board parameters

    Hi ,everybody
    When I created and configured a App server domanin with PSADMIN, these errors below occurred,but log files didn't have useful info:
    PeopleSoft Domain Boot Menu
    Domain Name: HCMDOM
    1) Boot (Serial Boot)
    2) Parallel Boot
    q) Quit
    Command to execute (1-2, q) [q]: 1
    Archived a copy of the domain configuration to /appfs/people/opt/PS/PS_CFG_HOME/appserv/HCMDOM/Archive/psappsrv.cfg
    Attempting to boot bulletin board...
    tmadmin - Copyright (c) 2007-2008 Oracle.
    Portions * Copyright 1986-1997 RSA Data Security, Inc.
    All Rights Reserved.
    Distributed under license by Oracle.
    Tuxedo is a registered trademark.
    TMADMIN_CAT:188: ERROR: Error while obtaining the Bulletin Board parameters
    ==============ERROR!================
    Boot attempt encountered errors!. Check the TUXEDO log for details.
    ==============ERROR!================
    Do you wish to see the error messages in the domain log file? (y/n) [n] :y
    PSADMIN.23310 (0) [11/30/12 10:58:42](0) Begin boot attempt on domain HCMDOM
    PSADMIN.23310 (0) [11/30/12 10:58:42](0) End boot attempt on domain HCMDOM
    Do you wish to see the error messages in the Tuxedo log file? (y/n) [n] : y
    105842.peoplesoft.ynby.cn!PSADMIN.23310: Begin attempt on domain HCMDOM
    105842.peoplesoft.ynby.cn!PSADMIN.23310: End boot attempt on domain HCMDOM
    Press Enter to continue...
    Don't know how to solve it ...

    Hi,Nicolas
    Before I booted up the app server ,I set the environment variable PS_CFG_HOME to /appfs/people/opt/PS/PS_CFG_HOME,and the above error occured,but when I unset the PS_CFG_HOME,it booted up successfully.But another error occured when booted up :
    exec PSMONITORSRV -o ./LOGS/stdout -e ./LOGS/stderr -A -- -ID 232457 -D TESTSERV -S PSMONITORSRV : Failed.
    tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error handler
    exec tmshutdown -qy
    I checked the pemission to boot up app server :
    SQL> SELECT CLASSID, STARTAPPSERVER FROM PSCLASSDEFN WHERE CLASSID IN (SELECT OPRCLASS FROM PSOPRCLS WHERE OPRID='PS');
    CLASSID STARTAPPSERVER
    PSAPPS 1
    EOEN9000 1
    EOCO9000 1
    PTPT1100 1
    PTPT1200 1
    PTPT1300 1
    and update:
    SQL> UPDATE PSCLASSDEFN SET STARTAPPSERVER=1 WHERE CLASSID='PSAPPS';
    1 row updated.
    SQL> UPDATE PSCLASSDEFN SET STARTAPPSERVER=1 WHERE
    CLASSID='EOEN9000';
    1 row updated.
    SQL> UPDATE PSCLASSDEFN SET STARTAPPSERVER=1 WHERE
    CLASSID='EOCO9000';
    1 row updated.
    SQL> UPDATE PSCLASSDEFN SET STARTAPPSERVER=1 WHERE CLASSID='PTPT1100';
    1 row updated.
    SQL> UPDATE PSCLASSDEFN SET STARTAPPSERVER=1 WHERE CLASSID='PTPT1200';
    1 row updated.
    SQL> UPDATE PSCLASSDEFN SET STARTAPPSERVER=1 WHERE CLASSID='PTPT1300';
    1 row updated.
    After doing these,it booted up with the error:
    exec PSRENSRV -o ./LOGS/stdout -e ./LOGS/stderr -A -- -D TESTSERV -S PSRENSRV :
    Failed.
    tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error handler
    Then I configured the REN server :
    Values for config section - PSRENSRV
    log_severity_level=Warning
    io_buffer_size=8192
    default_http_port=7180
    default_https_port=7143
    default_auth_token=<my hostname>
    Boot up app server again :
    Booting server processes ...
    exec PSWATCHSRV -o ./LOGS/stdout -e ./LOGS/stderr -A -- -ID 42933 -D TESTSERV -S PSWATCHSRV :
    process id=24245 ... Started.
    exec PSAPPSRV -o ./LOGS/stdout -e ./LOGS/stderr [email protected] -- -D TESTSERV -S PSAPPSRV :
    process id=24246 ... Started.
    exec PSAPPSRV -o ./LOGS/stdout -e ./LOGS/stderr [email protected] -- -D TESTSERV -S PSAPPSRV :
    process id=24256 ... Started.
    exec PSSAMSRV -o ./LOGS/stdout -e ./LOGS/stderr -A -- -D TESTSERV -S PSSAMSRV :
    process id=24266 ... Started.
    exec PSRENSRV -o ./LOGS/stdout -e ./LOGS/stderr -A -- -D TESTSERV -S PSRENSRV :
    process id=24273 ... Started.
    exec PSMONITORSRV -o ./LOGS/stdout -e ./LOGS/stderr -A -- -ID 42933 -D TESTSERV -S PSMONITORSRV :
    process id=24279 ... Started.
    exec WSL -o ./LOGS/stdout -e ./LOGS/stderr -A -- -n //<my hostname>:7000 -z 0 -Z 0 -I 5 -T 60 -m 1 -M 3 -x 40 -c 5000 -p 7001 -P 7003 :
    process id=6834 ... Started.
    7 processes started.
    Here is my configurations:
    OS:RHEL 5.4
    DATABASE:ORACLE Database 11.2.0.1
    Peoplesoft Tools: 8.52
    Application version:HCM 9.1
    Domain configuration:
    Quick-configure menu -- domain: HCMAPP
    Features Settings
    ========== ==========
    1) Pub/Sub Servers : No 16) DBNAME :[PEOPDB]
    2) Quick Server : No 17) DBTYPE :[ORACLE]
    3) Query Servers : No 18) UserId :[PS]
    4) Jolt : No 19) UserPswd :[PS]
    5) Jolt Relay : No 20) DomainID :[TESTSERV]
    6) WSL : Yes 21) AddToPATH :[.]
    7) PC Debugger : No 22) ConnectID :[people]
    8) Event Notification: Yes 23) ConnectPswd:[peop1e]
    9) MCF Servers : No 24) ServerName :[<my hostname>]
    10) Perf Collator : No 25) WSL Port :[7000]
    11) Analytic Servers : No 26) JSL Port :[9000]
    12) Domains Gateway : No 27) JRAD Port :[9100]
    It seems OK,But when I tested the 3-tier connection :
    It prompted: Could not connect to appliaction server HCMAPP.possible causes are:the server name/IP address and port for the application server alias are incorrect....
    Contect your system administrator to check the Tuxedo log for more information
    But I can sign on the database using Application Designer,and app server already booted up.
    Additional ,the Tuxedo and Weblogic were installed within different directorys,does it matter?
    Do you need more configuration info?
    Thanks for you to reply my questions ~

  • Re: Did you know: Playing radio streams from bulletin board

    a) Make a textfile with the url.
    b) Rename the file ending to .asx.
    c) Draw the file from the explorer to the bulletin board

    Yes! More or less! I am very happy!
    I'm using 9 desktops with "dextop". I've installed the multi-touch pack from microsoft with its "flicks". Panning is enabled in my firefox browser. It's a very good system.
    (I've disabled automatic rotation. There were to much bugs with explorer.)
    Sometimes the screen stops to react. The solution is the following: I hold down the hardware-key for ctrl-alt-del until the screen with the task manager appears. Then I touch cancel and everything works again.
    Bulletin Board is very cool with 9 desktops: All the windows of every screen appear in the list of open windows. So applications can easily be moved from one desktop to another one. And with bulletin board you can start applications on the desktop you want and play multimedia files.
    But in the last time I've sometimes a problem: When I restart the computer from standby and I touch the lower screen the cursor appears in the higher screen. I think that the problem is linked to the bulletin board. I've no good solution for the problem. I close the computer and restart it from standby and everything is fine again.
    The w100 is a very good computer. The dual screen is very useful. I can always switch the keyboard to the screen where it doesn't hide important informations.
    I can read big articles on two screens.
    For programming it is very useful too. With the panning I can go through the program text in Delphi very fast. I can insert the text exactly at the place were is belongs without mouse movements. I can move parts of text very fast. ...and I can work in my bed! With the visual C++ express editor the panning doesn't work very well. But the scroll bars are very reactif if I double click them.
    I like very much the bulletin board, but there are some bugs. It has much potential and could be a very rich platform for multimedia and social services. I can start directly my delphi projects from bulletin board with double click and open my browser from bulletin board directly at the right page.
    I take pictures of the digital edition of my news paper on the bulletin board.
    I'm waiting for the next upgrade of the bulletin board.

  • Scheduled Delivery Bulletin Board

    This post informs customers as to the current status of Scheduled Delivery Print Apps and links to available resources
    Scheduled Delivery Status- As of last edited date
    Today
    On Time
    All Print Apps are on schedule.
    Yesterday
    On Time
    All Print Apps were on schedule yesterday.
    Unwanted fax or content?  Check out this Forum Post or URL
    Facebook Registration Discontinued  click here
    Are you having a problem with a Scheduled Delivery?
    Check out this Forum post to resolve some more common Scheduled Delivery problems.
    Post on the Forum- DO NOT reply to this bulletin board post. Post a new topic on the forum,   Use the title of ‘Scheduled Delivery’ in the title and then list the issue.  Example ‘Scheduled Delivery .......(insert issue here).......’
    Search the Forum- Search the Forum for ‘Scheduled Delivery’ and look for others who have had similar issues resolved.
    FAQ’s- Scheduled Delivery FAQ’s are located on the ePrintCenter with the Print Apps at the following location FAQ's
    Current Scheduled Delivery Printers
               Current Scheduled Delivery Printers
    Interested in learning about Scheduled Delivery? Learn more here:
    The following print apps are currently available in selected countries with Scheduled Delivery-enabled printers:
    7-Day Menu Planner, ABC Behind the News, ABC News: Business, ABC News: Entertainment, ABC News: Sport, ABC News: Top Stories, ABC News: World, Allure: Anti-Aging Idea of the Week, Allure: Daily Beauty Reporter, Allure: Hair Idea of the Day, Ann Coulter, As I See It, Astrology, Bad Reporter, Biographic, Busy Moms Weekly: About Real Estate, Busy Moms Weekly: Advice for Parents, Busy Moms Weekly: Cultivating Life, Busy Moms Weekly: Do It Yourself or Not, Busy Moms Weekly: Dr. Ruth, Busy Moms Weekly: Drive-Thru Gourmet, Busy Moms Weekly: Environmental Nutrition Newsletter, Busy Moms Weekly: Film Clips, Busy Moms Weekly: Focus on the Family, Busy Moms Weekly: For Better or For Worse, Busy Moms Weekly: Kids & Money, Busy Moms Weekly: Living Space, Busy Moms Weekly: Lovescope, Busy Moms Weekly: Natasha's Stars, Busy Moms Weekly: Omarr's Astrology, Busy Moms Weekly: Scopin' the Soaps, Busy Moms Weekly: Smart Moves, Busy Moms Weekly: Stir It Up! (Eat in and Save), Busy Moms Weekly: Taking the Kids, Busy Moms Weekly: Tell Me a Story, Busy Moms Weekly: The Kid's Doctor, Busy Moms Weekly: The Medicine Cabinet, Busy Moms Weekly: The Right Thing, Busy Moms Weekly: The Savings Game, Busy Moms Weekly: The Smart Collector, Busy Moms Weekly: Wolfgang Puck, Busy Moms Weekly: Your Other 8 Hours, Busy Moms Weekly: Your Weekly Stars, Comics, Communication Success, Communication Success French, Communication Success Spanish, Daily Sudoku, Daily Word Puzzles, Dear Abby, Do Just One Thing, Earthweek, Epicurious: Daily Recipes, Epicurious: Healthy Dinner Tonight, Epicurious: Lunch Ideas for Kids, Epicurious: Weekly Dessert Ideas, Executive Digest, Focus on Health, Focus on the Family, Games & Puzzles Daily: Daily Commuter Crossword, Games & Puzzles Daily: Crossword Puzzler, Games & Puzzles Daily: Sheffer Crossword, Games & Puzzles Daily: Joseph Crossword, Games & Puzzles Daily: Sudoku Challenge, Games & Puzzles Daily: Kakuro, Games & Puzzles Daily: Conceptis Puzzles, Games & Puzzles Daily: Daily Sudoku, Games & Puzzles Daily: Kakuro Puzzle, Games & Puzzles Daily: Bionic Brain, Games & Puzzles Daily: Cryptograms/Anagrams, Games & Puzzles Daily: Nimble Neurons, Games & Puzzles Daily: Word Works, Games & Puzzles Daily: Word Salsa, Games & Puzzles Daily: Word Puzzles, Games & Puzzles Daily: Today's Crossword, Glamour: Beauty News of the Week, Glamour: Daily Fashion Guide, Glamour: Weekly Guide to Guys, Golf Digest: Tip of the Day, Golf Insider, HealthPro Daily, Jeu Mathématique Hebdomadaire, Kid's Weekly Activities: Uncle Art's Funland, Kid's Weekly Activities: World of Wonder, Kid's Weekly Activities: World of Wonder - Teacher's Guide, Kid's Weekly Activities: Ripley's Sudoku Kids, Kid's Weekly Activities: Kid City, Kid's Weekly Activities: www 4 Kids, Kid's Weekly Activities: You Can with Beakman & Jax, Kid's Weekly Activities: Magic in a Minute, Kids Only, Living Healthy, Lovatts, Lucky: Fashion Tip of the Week, Lucky: Guide to a More Organized Life, Magic in a Minute, Manager Tools, Manager Tools French, Manager Tools Spanish, Minute Maze, Motley Fool, msnbc.com: Top Stories, msnbc.com: TODAY, NASCAR Insider, National Perspective, News of the Weird, Pet Connection, RapidBuyr, Roger Ebert Movie Reviews, RTT News, Scott Burns, Self: Exercise Tip of the Day, Self: Healthy Finds of the Week, Self: Nutrition Tip of the Day, Smart Moves, Tell Me a Story Classic, The Daily Read: Business, The Daily Read: Entertainment, The Daily Read: International, The Daily Read: Lifestyle, The Daily Read: Sports, The Daily Read: Technology, The Daily Read: US News, The Rumor Mill, Universal Crossword, Weekly Math Game, Word Puzzles, Yahoo! Daily Digest, You Can with Beakman and Jax
    Although I am an HP employee my posts and replies are my own.

    mry,
    You should post your question in the Ask a Question box on the Post Install Printing Issues Forum at this location:
    http://h30434.www3.hp.com/t5/Post-Install-Printing-Issues-New/bd-p/PostPrint
    You can copy your original message and paste it there.
    Include a Subject something like this: <Model of your printer>: Copy issue
    I work on behalf of HP.

  • When to use Drop In Item renderer and InLine Item Renderers ??

    Hi ,
    I am getting confused in where to use Inline ItemRenderer and DropIn Item Renderer .
    What i feel is that DROP in Item Renderer are easy to use , and those can satisfy any requirements .
    What i read from tutorilas that we cant use Drop In because they say ,  The only drawback to using  drop in is that them is that you cannot configure them
    Please help me .

    Hi Kiran,
    Here is the detailed explanation you needed:
    You can also refer the link below:
    http://blog.flexdevelopers.com/2009/02/flex-basics-item-renderers.html
    Drop-In Item Renderers
    Drop-In Item Renderers are generic in nature and don't rely on specific data fields to render data. This allows them to be used with a wide range of data sets, hence, the term “drop-in”. Drop-In Item Renderers can be “dropped-in” to any list-based control regardless of the dataprovider’s data properties.
    In our previous example, the employee photo property requires use of a custom Item Renderer to render properly in the UI. In this scenario the Image component satisfies our rendering needs out of the box. Implemented as a Drop-In Item Renderer, the Image component takes any data property regardless of name and uses it as the Image component's source property value. Assuming our employee photo property contains a valid image path, the Image Drop-In Item Renderer will work perfectly and resolve the image path as an image in the UI.
    <!-- Drop-in Item Renderer: Image control -->
    <mx:DataGridColumn dataField="photo"
                       headerText="Employee Photo"
                       itemRenderer="mx.controls.Image"/>
    Drop-In Item Renderers are simple and easy to use and satisfy specific use cases nicely. However, they provide no flexibility whatsoever. If your needs are not satisfied by a Drop-In Item Renderer, you must create your own Item Renderer as an inline component or an external component.
    Inline Item Renderers
    Generally used for simple item rendering requiring minimal customization, inline Item Renderers are defined as a component nested within the MXML of your list-based control.
    It is important to note that Item Renderers nested within the itemrender property of a list-based control occupy a different scope than the list-based control. Any attempt to reference members (properties or methods) of the parent component from the nested Item Renderer component will result in a compile-time error. However, references to the members of the parent component can be achieved by utilizing the outerDocument object.
    <mx:DataGrid id="myGrid" dataProvider="{gridData}">
       <mx:columns>
          <mx:DataGridColumn headerText="Show Relevance">
             <mx:itemRenderer>
                <mx:Component>
                   <mx:Image source="{'assets/images/indicator_' + data.showRelevance + '.png'}"
                             toolTip="{(data.showRelevance == 1) ? 'On' : 'Off'}"
                             click="outerDocument.toggle()" />
                </mx:Component>
             </mx:itemRenderer>
          </mx:DataGridColumn>
       </mx:columns>
    </mx:DataGrid>
    Remember, rules of encapsulation still apply. Mark all properties or methods public if you want them accessible by your inline Item Renderer. In the previous example, the toggle() method must have a public access modifier to expose itself to the inline Item Renderer.
    public function toggle():void
    Inline Item Renderers can also be reusable by creating a named component instance outside of the list-based control. This component must have an id property and contain the rendering logic of the Item Renderer. Using data bindings, the component is assigned to the itemrenderer property of one or more data properties of a list-based control.
    <!-- Reusable inline Item Renderer -->
    <mx:Component id="ImageRenderer">
       <mx:VBox width="100%" height="140"
                horizontalAlign="center" verticalAlign="middle">
          <mx:Image source="{'assets/'+data.image}"/>
          <mx:Label text="{data.image}" />
       </mx:VBox>
    </mx:Component>
    <!-- Used within a list-based control-->
    <mx:DataGridColumn headerText="Image"
                       dataField="image" width="150"
                       itemRenderer="{ImageRenderer}"/>
    In the previous example, note that the Item Renderer component contains 2 UI controls – Image and Label. When using multiple controls within an Item Renderer, a layout container is required. In this example, a VBox was used.
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari
    Message was edited by: BhaskerChari

  • How to use the html:link with a arraylist

    Hi everyone:
    I want to display the data using struts html:link.
    I query the database and place all the data to javabean,later place all the javabean to ArrayList.In Action,I use the "request.setAttribute("lovetable",articlelist) to set request to jsp page.
    I want to pass a parameter "id" use the hyperlink so I can get the parameter when I click the hyperlink.
    But how to use html:link to display it?
    I use <html:link action="viewtopic.do" paramId="id" paramName="lovetable" paramProperty="id"/>,it can't work and Tomcat report error :
    org.apache.jasper.JasperException: No getter method for property id of bean lovetable
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    The lovetable is a ArrayList and it don't have a getter or setter method.
    How to use it pass parameter? :( Thks

    Thank you.
    I use the bean:define successful.And display all the data to jsp.My jsp code is:
    <logic:iterate id="love" name="lovetable">
    <bean:define id="idbean" name="love"/>
    <tr bgcolor="<%=color%>">
    <td><bean:write name="love" property="id"/></td>
    <td><html:link forward="viewtopic" paramId="id" paramName="idbean" paramProperty="id"><bean:write name="love" property="title"/></html:link></td>
    <td><bean:write name="love" property="name"/></td>
    <td><bean:write name="love" property="time"/></td>
    </tr>
    </logic:iterate>
    In Action : request.setAttribute("lovetable",articlelist)
    ResutlSet rs=.............
    List articlelist=new ArrayList();
    while(rs.next()){
    articlebean bean=new articlebean();
    bean.setName(rs.getString("name"));
    bean.setTitle(rs.getString("title"));
    articlelist.add(bean);
    The above code will work property.
    The Tag "html:link" need bean to work other than arraylist so I iterate all the bean out.
    The Tag "logic:iterate" need collection to work so I make Action return a List.
    right?
    Any idea? :)

  • Is it possible using SQLite to collect data from an older SQL database?

    Is it possible using SQLite to collect data from an older SQL database? Where can I find a possible answer. Thanks in advance.

    There are 3rd-party tools (see comprehensive list at http://www.kenhamady.com/bookmarks.html) that provide extra pdf functionality on top of the pdf export from Crystal. 
    In the case of my Visual CUT software, you can use hidden formulas inside your Crystal report to generate form fields (pre-populated as well as empty) as part of the pdf export process.
    hth,
    ido

  • Specific layout: Collection Renderer Property for Sorting

    Hi,
    I am trying to create a new layout that display items sorting them by name (in alphabetical order).
    The problem is that I don't know what is the name of that property and if it exists !!
    In Collection Renderer, Property for Sorting, I have tried with "name" but it had no effect. Any idea ??
    Thanks for your help.
    Thibault

    Hello Helge,
    Unfortunatelly it is not possible to sort the repository resources based on more than one property.
    In the configuration of the collection renderer it is possible to define the property for sorting. Moreover, the sorting mode (ascending/descending) could be specified.
    Even not displayed properties could be used for sorting. However, it might be confusing for users since it is difficult to understand the order of the resources.
    Best regards,
    Roland

Maybe you are looking for

  • How do I manually sync with multiple computers

    Hey All, So I have a laptop with iTunes with some music and a desktop with iTunes and different music. Is there a way to be able to drag music from both onto my iPhone? I tried setting them both for manual (Which wipes my libraries, thanks Apple ) Bu

  • Trying to understand how the sync works

    So this is what i am trying to figure out. I know that if i create a document in pages on my mac that i need to upload the doc via icould for it to show in iwork.  I also know that if i access that file from my iphone or ipad and make changes to that

  • C:\\window​s\system32​\slc.dll

    I have a HP G62-465 DX notebook PC with Windows 7.  The windows media player has stopped working.  I get a system 32 error.  The laptop is also freezing up and I get the plug-in in has stopped working errors as well.  I have tried using the system re

  • Photos does not alphabetize faces

    I have recently updated IPhoto to Photos on my MacBook Pro with Yosemite.  As I was trying to familiarize myself with the new software, one of the problems I encountered was that I used to be able to organize in "Faces" in alphabetical order.  I can'

  • How to start editing previously edited image files?

    When NEF (raw files) in LR4 are edited, it generates two additional files: tiff and jpg (by "save as").  Later on, when I want to furhter edit those images, how do I start with?    Obviously, I could re-edit from history panel of the orignal NEF file