Editable HTML iview

Hi,
In my portal I have a PAGE that contains several iviews.  At the top I have an KM Document iView that shows the latest news. It just points to an HTML document that is in a KM repository.  Whenever I want to change/update the latest news I typically will go all the way to the repository and edit the HTML.  Now I would like to hand this news editing off to our marketing department.  Is there any way to setup the iview so that they can edit it from the iview rather than have to go and find the source document in the repository?
I hope I am making sense and you understand what I'm trying to accomplish.
Thank you for your time.
-Patrick

Hi Partick,
For creating news authoring iview create news by using xml form builder (i.e)
goto content management-> goto public documents->folder-> new->forms->sap demo news.
Here create the news u need and add to a folder
Now create a KM Navigational iview
In the properties of tht iview:
1)path to initially displayed folder: (root of folder containing news eg:/documents,/Public    Documents/foldername)
2)Layout set : NewsExplorer (if u want to give this iview to news authors for editing for creating news )
                      or else
                     NewsBrowser(if u want to give this iview to general users)
Edited by: tilak K on Feb 18, 2008 6:03 AM

Similar Messages

  • How to change background color in html iView

    Hi everyone,
    Is there a way to change the background color of a HTML iView automatically (without using the html editor) ?
    Actually the background is white, and I would like it to be blue (or better : in the same color of the theme's background). And I don't want to use the XML Form builder, because you can't add images...
    Thanks in advance,
    Alex

    Hi,
    if u want to change the background color of html page
    in the body tag u can write like this
    <body bgcolor="#0000FF">
    </boby>
    but this background color doesnt change according to the portal theme.
    Regards,
    Beevin.

  • WebDynpro proxy page with Webdynpro iView and SAP Gui for html iView

    Hello,
    I have a requirement to have a page that has at the top of it a webdynpro for java iView screen with several links that when pressed pop-up various data pulled from the back-end. This part is fine and presents no problem. Beneath this the requirement calls for a SAP Gui for HTML iView to be displayed. Which is no problem either. The problem occurs when one of the links in the java webdynpro application at the top of the screen is pressed it causes the SAP Gui for HTML portion to refresh and come back to the beginning. So for example you first navigate to this screen and you go into the sap gui for html portion and drill into 2 or 3 screens in the sap gui for html transaction. If you then press one of the webdynpro links the sap gui for html (which is a separate iView) refreshes and you are taken back to the initial screen. This only occurs when using a web dynpro proxy page. If I use a standard page the SAP Gi for html does not refresh. Unfortunately there are other things not mentioned here that require us to use the webdynpro proxy page.
    Any help is greatly appreciated,
    Bert

    Use System admin -> System Config and find your system in the PCD (under portal content). Right click and open -> permissions. Find a user or group or role and give it the end user permission. I'd suggest the group Everyone.
    Cheers

  • Can't edit .html file in dreamweaver?

    Why can't I edit .html file in Dreamweaver CS 5.5 when it is not attached to a template?
    I have always been able to edit it every other time I have opened the file (since I built the site over two years ago).
    Now each time I try to edit it in Design mode, no matter where I click in the file the whole page gets a dark grey overlay and I can't get a curser.
    I am still able to edit the code directly but I do not want to be restricted.
    The last thing I did the last time I opened the file was paste Google Analytics code in just before the </head> tag. I did this to all the files on the site but this is the only one that isn't working. I have tried taking out this code but it makes no difference.
    I am using a 6 month old Macbook pro.
    Can anyone help me?

    In your stylesheet you have -
    .container {    overflow:hidden; width: 100%;}
    .container2 {   overflow:hidden; width: 646px; margin:0 0 10px 0}
    Try right clicking on the page in Design view and then selecting Element view > Full and see if that helps.

  • Plain Text will not display correctly, how can i edit html?

    Hello,
    my beloved MacBook Pro has been a godsend, however i have found that it is incapable of displaying Plain Text, in Text Edit, Safari (View Source), or Dreamweaver's code view. Thus, i am finding it impossible to view or edit html.
    the way it displays is either all jumbled and overlapping, or spread out over impossible distances. sadly i cannot post a picture.
    we also have a G3 and a G4 in the house, both running 10.3, and they also have the same issue with plain text.
    I have not found any topic on this, here or in google. can someone please help?
    thanks,
    Tobias
    macbook pro 2.33 3GB   Mac OS X (10.4.8)  

    Tom, very kindly, has got me most of the way to a happy ending.
    one or another font file or cache was causing the problem. i removed all fonts from Home/Library/Fonts, then ran FontFinagler, rebooted, and things display correctly.
    now i must figure out how to establish which fonts are suitable suitcases to be used.
    bests,
    tobias
    macbook pro 2.33 3GB    

  • Edit html in JEDITORPANE

    HEllo friends!
    I need your help, for editing html in editorpane.
    I want to create a textarea in which the user type simple text than select some part of it & makes it bold, italic etc. by using an event of button or popup any thing.
    So guide me that which textcomponent provide this , i already used JEditorPane, and insert tags manually but it is not good, if i try to overlap the tags og italic & bold.
    So please help me is this any way pre built to provide these func. of add html tags in jeditorpane & use see the render html test in area.
    than please provide me. at [email protected]
    Thanks
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    import javax .swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.IOException;
    public class TestJEditor extends JFrame {
    Panel p1 = new Panel();
    JButton b1 = new JButton("BOLD");
    JButton b2 = new JButton("ITALIC");
    BorderLayout borderLayout1 = new BorderLayout();
    JScrollPane jScrollPane1 = new JScrollPane();
    JEditorPane jEditorPane1 = new JEditorPane();
    HTMLEditorKit editorKit = new HTMLEditorKit();
    DefaultEditorKit defaultKit = new DefaultEditorKit();
    public TestJEditor() {
    super("Note");
    this.getContentPane().add(p1);
    //jEditorPane1.setEditable(false);
    jEditorPane1.setEditorKit(editorKit);
    p1.setLayout(null);
    p1.add(jScrollPane1);
    jScrollPane1.setBounds(10, 10, 350, 100);
    jScrollPane1.getViewport().add(jEditorPane1, null);
    b1.setBounds(370, 10, 100, 20);
    p1.add(b1);
    b2.setBounds(370, 40, 100, 20);
    p1.add(b2);
    b1.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e)
         // jEditorPane1.setEditorKit(defaultKit);
         String str = jEditorPane1.getText();
         System.out.println(str);
         String temp = jEditorPane1.getSelectedText();
         if(temp.indexOf("<B>") != 0)
         int start = str.indexOf(temp);
         int end = start + temp.length();
         System.out.println("start "+start+" end "+end);
         str = str.substring(0,start)+"<B>"+str.substring(start,end)+"</B>"+str.substring(end);
         jEditorPane1.setText(str);
         //System.out.println(jEditorPane1.getText());
    b2.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e)
         String str = jEditorPane1.getText();
         System.out.println(str);
         String temp = jEditorPane1.getSelectedText();
         System.out.println("Italic");
         int start = str.indexOf(temp);
         int end = start + temp.length();
         str = str.substring(0,start)+"<I>"+str.substring(start,end)+"</I>"+str.substring(end);
         jEditorPane1.setText(str);
    public static void main(String[] args) {
    JFrame frame = new TestJEditor();
    frame.setSize(600,500);
    frame.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0);
    //frame.pack();
    frame.show();
    }

    Hi kashif10,
    JEditorPane or JTextPane are the classes to use. You can have both bold and italic for a text portion.
    See http://java.sun.com/products/jfc/tsc/articles/ for an overview of articles covering the swing text package.
    Or try application SimplyHTML at http://www.lightdev.com/template.php4?id=3 it is open source and has a lot of documentation too.
    Ulrich

  • Issues editing HTML on an existing site.

    I am attempting to replace the existing content in a site's left panel with custom HTML. 
    I refined the HTML working with a new blank subsite and was able to use the "Edit HTML" option directly in the Left Panel without adding a Content Editor Web Part. 
    When I go to the existing site I am unable to get the "Edit HTML" option within the panel itself and when I add a Content Editor Web Part it completely breaks my formatting. 
    Is there any way to apply HTML directly to an existing site panel without using a web part?

    Hi  ,
    According to your description, my understanding is that you want to customize the quick launch of your SharePoint 2010 site.
    For your issue, you can use the SharePoint web interface or SharePoint Designer 2010. You can have a look at the blog:
    http://sharepointpromag.com/sharepoint/four-ways-add-or-remove-quick-launch-menu-control
    http://msdn.microsoft.com/en-us/library/office/ms466994(v=office.14).aspx
    http://office.microsoft.com/en-in/sharepoint-server-help/configure-the-quick-launch-for-site-navigation-HA102130960.aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Editing HTML file leaves temporary files lying about the place

    G'day
    CFB 2.0.1, installed as stand-alone on Windows 7 Enterprise 64-bit.  Although this has been the case since CFB 1.0, and on various Windows installs.
    Whenever I edit a HTML file (ie: with a .html extension), CFB creates  a temporary file in the same dir, eg: .tmp_charts.html.33659~ (the original file name is charts.html).  I've no problem with this - other than the fact it should not be necessary - but what I do have a problem with is that it does not tidy up after itself once it's done: the tmp files stay there.  This is a bit sloppy.
    I'm sure (100% sure) I've raised with this with Adobe in the past, and raised a bug for it, but it's not on the bug tracker for some reason.
    Can other CFB users test out what happens when they edit HTML files with CFB? Note: the tmp file does not show up in the navigator listing within CFB, but it is there in the file system if one looks with Windows Explorer.
    I'm going to raise a bug again (done: 3328624), in the hope this can be fixed.  It's a minor thing, but I'm sick of accidentally committing rubbish to my source control because I forget CFB can't tidy up after itself.
    Cheers.
    Adam

    Curious.
    Still: they should just not be there in the first place.  They don't appear for any other file type that I am aware of.
    Agreed!
    Come to think of it, I had another issue with CFB leaving bits around a while back.  Ahhh, now I can't remember exactly what the issue was.  I remember it had to do with mapping a networked drive.  When I would map a particular drive letter, say 'W', then start CFB it would create an entire folder hierarchy on there seemingly from a different server.  I know this because we have two different CF environments here; some server are running CF under JRun and others are running CF under WebSphere.  I only noticed this issue because I had mapped one of our JRun servers and all of a sudden it had portions of the WebSphere directory structure on there.  I think it had to do with a workspace in CFB but can't remember for sure.  I fixed it a while back by removing the offending setting in CFB.  Man, wish I could remember exactly what it was...

  • Edit HTML in Blog

    Hi All,
    Basically I'm fidelling around with the Blog function and I'm trying to add a youtube video to the blog using the HTML code from youtube, and choosing edit html from the toolbar and pasting the code in.
    When I press save the blog is blank. And when I press "edit html" again none of the code that I just pasted is there.
    I'm no shark at html, so am I doing something wrong?

    Emilliard,
    The html you are pasting is blacklisted. It's a security provision that Apple put in place for you. You can override it to allow the html, but you will have to create a custom whitelist on your server.
    First, grab this PDF: http://images.apple.com/server/macosx/docs/ExtendingYour_WikiServer.pdf
    Then read page 33. It references your YouTube problem specifically.
    Good luck,
    RyanR>

  • How do I edit HTML after publishing site?

    What does it mean to edit HTML after publishing the site? How exactly is that done? From another thread, it seems that re-publishing will overwrite that HTML - is that true? Thanks for any insight into this.

    This link may help:
    http://iwebfaq.org/site/iWebAlternativeHTML.html

  • Editing HTML through the browser itself

    Today, I went to JotSpot and reached the following page saying that Safari is not supported [from http://feedback.jot.com/KnownIssues/]:
    Mac Support
    <item>1. Mac support: WYSIWYG will work with the Firefox browser (free, open-source), but not with Safari. Safari does not allow you to edit HTML through the browser itself. Without this capability, we cannot offer WYSIWYG mode.
    Any idea why Apple did not implement this feature? Is it in the roadmap?
    Thanks!
    - Mazzaroth

    I do not know how JotSpot implements online editing, but I have been on sites using Safari which have allowed me to have an html editor with formatting buttons and a choice between wysiwyg and html editors.
    You can always send in a bug report using "Report Bugs to Apple" under the Safari menu.
    And for now, if you want to use JotSpot you can use Firefox.

  • Scrollbar in HTML iview

    Hi Experts,
    I have one HTML iview with number of links in it. I need to put a scrollbar in this iview so that user can scroll down to see all the
    links.
    Can you please suggest in the properties of this iview(under content admin) which property I need to change so that the scrollbar
    will happen.
    Thanks a lot in advance.

    Srini,
    Check the Isolation method property.
    http://help.sap.com/saphelp_nw04/helpdata/EN/b5/8d977463334342be192228d2824fe1/content.htm
    Good Luck!
    Sandeep Tudumu

  • How to edit html in iWeb

    How can I edit html in iWeb?

    but info was needed on how to edit / add additional coding as no obvious way of designing a typical 'Contact Us' form included in iWeb
    Then you should have said that in your topic.
    And if it did not answer the question, then say so in the same topic.
    Anyway, the HTML Snippet was invented for your purpose.
    So find the Contact Us code, usually a form, and paste it in the HTML Snippet.

  • How can I edit HTML code that was previously inserted?

    Inserting HTML code is easy enough - Object -> Insert HTML...
    But editing the code does not seem possible. It seems that it's necessary to delete the HTML object and reinsert it to make a change. What am I missing?

    Right click. I'm on my phone, but an option like "Edit HTML..." should be among the choices when an HTML embed object is selected.

  • My Firebug doesn't edit HTML, CSS etc.; the only option is "Delete element" or so... FF and Fbug are new versions, FF itself works perfectly. The Edit option looks like dead... Thank you.

    Firebug is supposed to show the changes of the site "in fly" while editing HTML code. But Edit is disabled permanently, only Remove (or Delete) element is functional

    Do you have the DOM Inspector installed?
    *DOM Inspector: https://addons.mozilla.org/firefox/addon/6622

Maybe you are looking for

  • Smart Form printing issue in repeate page

    Hi, We have one smartfforms printing  some notification details in which Only one page layout is use and it is repeated again  at one block Upper margin is 18.23  and Height is 9.60 CM  on first page it is printing properly  but on second page it is

  • IPhone sync issues with 3gp videos:

    My girlfriend texts me a video from her iPhone 4 to my iPhone 4.  I downloaded it to my computer and put it in a file folder.  I try to sync my iPhone and iTunes crashes when it gets to the sync photos part every time.  I had this issue two weeks ago

  • I can't get a video from a PC user on iChat

    Hi, I have a brand new MacBook Pro with iChat 4.0.5 and my boyfriend just got a Vista based laptop to take to school so he has the newest version of aim. I have been able to chat with other mac users but he is the first I have had problems with. I ca

  • TEXT LINE IS CUTTING IN REPORT

    Hi Gurus In my report the Internal note and Header note is very length description and it is cutting in the text so how can i make it to another line I can see if i make the linesize 132. please comments.

  • Downpayment internal order

    Hi SAP gurus, We are using capital investment order to captalize assets. We want to capture the down payment made on the Internal order. This internal order are used as account assignment for purchase order. We mention the purchase order while making