XML News html editor not visible

Hi,
As a part of XML News we have created an html editor along with other labels,text field etc.The problem now is this editor is not visible while creating the News using News Editor Role.Can you help?
Regards
Imran

Hi Raghu,
                 Forms availability are eanabled already.If we are opening the News form all other fields (like button,text fields etc) are visible but the only thing not visible is the component hml editor where the Editor has to write News,I hope you understand this.Even though that is present in the form template under XML bulder.
Regards
Imran

Similar Messages

  • New HTML editor?

    Just wanted to find out how others are using/not using the
    new HTML editor in RH7.
    Our HTML files are valid, coded HTML, and what the RH editor
    does to them is, well, a bit scary. Changing tags, removing
    information, removing comments and formatting/line breaks that take
    the once well-coded HTML and make a jumble out of them.
    So far, we've just been using an external editor to edit the
    files, and just used RH to generate the files. RH has had issues
    with some XML code in our files for awhile so the editor has always
    been problematic (stripping out the XML code) but rather than an
    improvement, it seems like the new version is just worse.
    Am I missing something?

    quote:
    Originally posted by:
    Peter GraingeWhat annoying popups are bothering you?
    Sorry it took so long for me to reply--I forgot
    about the topic and my point was rhetorical anyway.
    Anyhoo, since you ask: Say I need to add a class to a
    paragraph tag (say, change <p> to <p class=caption>).
    When I press the spacebar after the p to start typing, a
    pop-up appears giving me a list of various HTML tags.
    Example:
    quote:
    <h5> ... </h5>
    <h6> ... </h6>
    <head> ... </head>
    <html> ... </html>
    ...and so on. Why? What does the list mean? Things I
    could add? What are they supposed to help me do? Isn't not
    as a shortcut to typing because if I double-click one of the listed
    items it merely inserts the code and doesn't replace the code
    that's already there so I'd end up with
    <p<h5></h5>> and end up having to spend time
    correcting that mess.
    The pop-up very nearly obscures what I'm typing and so I have
    to click elsewhere to get the pop-up to go away. And it happens
    every time.
    It's a poke in the eye. I thought the HTML editor would be
    more convenient, but now? I prefer using Notepad by an order of
    magnitude. (And it's moot anyway since the HTML editor is broken--a
    problem
    I
    described awhile back resurfaced and we're out of ideas on how
    to fix it.)

  • New folder is not visible inside my project but shows in Windows Explorer.

    I created a new folder under another folder.  The new folder is not visible inside my project but shows in Windows Explorer.  Also, if I try to add another folder of that same name, it denies the action since the folder (although invisible) already exists.  My co-worker can access the same file (on a share drive) and see the new folder just fine.  This error occurs whether I was the one creating the new folder or she is the one creating the new folder.  I am new to RoboHelp and she has used it for years.  I suspect something is not yet set up right on my side.  Ideas? (I thought I posted this yesterday but I can't find it anywhere)

    Hi there
    What version of RoboHelp are you using?
    Did you create the folder from inside RoboHelp or did you create it using Windows Explorer?
    Cheers... Rick

  • LOok for Emergeny help about Property editor not visible

    For some reason, my Property Editor window of Workshop is not visible any more. I have tried restart workshop and from possible menus.
    I have read a posting dated Mar 10, 15,17 by Jared, Judecki, he said even by restall the workshop, the problem still there. He talked about editing a properties file that Weblogic placed in Window's profile
    (which related with the window's location.
    I post this problem again want to get tour response especially from Jared Judecki, if you know what's the name of properties file and how to edit it, also if you know the email of Jared Judecki, that's of great help.
    Thanks again!!
    Please tell me the steps how to fix the "property
    editor not visible in weblogic", where is the properties file related with weblogic in windows profile. and how to edit this file.

    Did you try selecting portal components like books, pages, portlets. I have seen this problem too. But it would go away when you restart workshop.
    --SJ                                                                                                                                                                                                                                                                                                               

  • Xml form HTML Editor control change.

    Hi,
    Is it possible to change External weblink control property of HTML Editor used in xml form builder.?
    As of now this control gives 2 options to provide external weblink (1.Open in active window ,2.open in new window).I want to add open in same window as top.
    Can anyone give some useful information ?
    Thanks and Regards,
    Jack.
    Note: Points will be awarded for useful answers.

    Hi jack men,
    If you are still interested in a solution to your problem...
    We just hit upon the same problem. I found out that XMLForms reference htmledit4.js in their <XMLForm-Name>Edit.xsl, so you have to adapt that one.
    I saved htmledit4.js and renamed it to htmledit5.js so that I can change the HTMLEditor settings only for my XMLForm (and not for e.g. SAPNewsForm).
    I changed the entry in my XML-Form Editor settings XSL to reference the new JavaScript file:
    [code]<xsl:value-of select="$xmlformsroot"/>/htmledit/htmledit5.js</xsl:if>[/code]
    Then I copied the method body of htmledit3.js (the standard htmleditor JavaScript file) to htmledit5.js and adapted it to just show the two tragets of <i>self</i> and <i>top</i>.
    The method to display link properties is: <b>htmlb_hed_makeWebLinkDialog</b>
    Find this method in both files. Then find in htmledit3.js the beginning of the target window selection-box:
    [code]sSizerHtml += "<SELECT id=htmlb_hed_link_launch_mode class=\"urDdlWhlSml\">";[/code]
    the following lines of code determine the selectable values.
    You will notice that htmledit4.js misses a few entries. Just copy all or the ones you need.
    For your convenience I show my code here:
    [code]  sSizerHtml += "<td>";
      sSizerHtml += "<span style=\"font-size:1em;\">";
      sSizerHtml += "<SELECT id=htmlb_hed_link_launch_mode class=\"urDdlWhlSml\">";
    //-- target=_blank
      sSizerHtml += "<OPTION value=\"_blank\" ";
      if(modOpenMode==1) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_BLANK"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_parent --
      sSizerHtml += "<OPTION value=\"_parent\" ";
      if(modOpenMode==2) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_PARENT"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_search--
      sSizerHtml += "<OPTION value=\"_search\" ";
      if(modOpenMode==3) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_SEARCH"]; 
      sSizerHtml += "</OPTION>"; 
    //--target=_self
      sSizerHtml += "<OPTION value=\"_self\" ";
      if(modOpenMode==4) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_SELF"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_top
      sSizerHtml += "<OPTION value=\"_top\" ";
      if(modOpenMode==5) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_TOP"]; 
      sSizerHtml += "</OPTION></SELECT></span>";
      sSizerHtml += "</td>";
      sSizerHtml += "</tr>";[/code]
    I didn't check yet if a new generation of the XMLForms Project in the XMLFormsBuilder overwrites the changes in the XMLFormsEdit.xsl, however I guess so. A better way would be to adjust the JavaScript reference in some other configuration file that I haven't found yet, until then just adapt the XSL everytime...
    If Carsten Buechert contacted you regarding the exchange of the whole control, I would be interested myself as well.
    Cheers
    Kilian

  • XSLT Transform XML 2 HTML does not work well

    Hi,
    This is my first attempt to use XSLT to convert my XML file into HTML using Java. I have included below the java code I used for the transformation, the xsl file and the xml file.
    As per the xml file, I would like to display the carrier's common-name for each host. However, I can only get to display the carrier-id using the code line
    <xsl:value-of select="./@carrier"/>
    as shown in the last part of the xsl file, but cannot get the carrier's commonname from the carrierid using the code,
    <xsl:variable name="hostCarr" select="./@carrier"/>
    <xsl:variable name="hostcomName" select="id($hostCarr)/common-name"/>
    <xsl:value-of select="$hostcomName"/>
    However this works well if I were to use XML SPY for the conversion, instead of the Transform class in Java. I am using version 1.4.1 of Java.
    Please help.
    Thanks,
    Prasuna
    XML file
    <pathinfo pathogen-name="Brucella spp.">
         <taxonomy>
              <carrier carrierID="wild">
                   <common-name>Wild cies</common-name>
              </carrier>
              <carrier carrierID="sheepandgoats">
                   <common-name>Domestic Pig</common-name>
              </carrier>
              <carrier carrierID="lab">
                   <common-name>Laboratory environment</common-name>
              </carrier>
         </taxonomy>
         <host-list>
              <host carrier="wild"></host>
              <host carrier="lab"></host>
              <host carrier="sheepandgoats"></host>
         </host-list>
    </pathinfo>
    XSL file
    <xsl:stylesheet version="1.0" xmlns:a="http://www.xmlspy.com/schemas/orgchart" xmlns:ipo="http://www.altova.com/IPO" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         <xsl:output method="xml" version="1.0" encoding="ISO-8859-1" omit-xml-declaration="no" indent="no" media-type="text/html"/>
         <xsl:template match="pathinfo">
              <html>
                   <head><title><xsl:value-of select="@pathogen-name"/></title>
                   </head>
                   <body bgcolor="#ffffe5" text="#000000" link="#007a00" vlink="#7a0000" alink="#ff0000">
                        <xsl:apply-templates select="host-list"/>
                   </body>
              </html>
         </xsl:template>
         <xsl:template match="host-list">
              <ol>
                   <xsl:for-each select="host">
                        <li>
                             <xsl:variable name="hostCarr" select="./@carrier"/>
                             <xsl:variable name="hostcomName" select="id($hostCarr)/common-name"/>
                             <!--
                             <xsl:value-of select="./@carrier"/>
                             <xsl:value-of select="$hostcomName"/>
                             -->
                             <xsl:value-of select="$hostcomName"/>
                        </li>
                   </xsl:for-each>
              </ol>
         </xsl:template>
    </xsl:stylesheet>
    Java Code
    import javax.xml.transform.*;
    import java.net.*;
    import java.io.*;
    public class Xml2Html {
    public static void main(String[] args) {
    try {
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Transformer transformer =
    tFactory.newTransformer
    (new javax.xml.transform.stream.StreamSource
    ("temp.xsl"));
    transformer.transform
    (new javax.xml.transform.stream.StreamSource
    ("temp.xml"),
    new javax.xml.transform.stream.StreamResult
    ( new FileOutputStream("temp.html")));
    catch (Exception e) {
    e.printStackTrace( );

    From Michael Kay's book "XSLT Programmer's Reference":
    'A non-validating XML parser isn't required to read attribute definitions from an external DTD. In this situation the XSLT processor will assume there are no ID attributes present, and the id() function will always return an empty result."
    Presumably you didn't set your transformer to use a validating parser, and I don't even see a reference to a DTD there. However the expression id('X') is equivalent to //*[@id='X'], Kay goes on to say. Try that instead.

  • New item category not visible in CRM WebUI

    Hi,
    I am working on CRM 7.0, Leasing Contracts component BT114H_LAM.
    I created a new item category for the contract however this is not visible in the WebUI screen. the moment i enter the item it dissappears from the screen. It is available in the item details.
    Same item is visible in the Backeng SAP GUI.
    Can anyone suggest some solution for the same.
    I have done all the customizing required for the new item category in SPRO-Financial Services->Basic Functions->User Interfaces->CRM Web client UI
    Waiting for some quick reply
    Regards,
    PP

    Thanks fo ryour input.
    There was somethng else that was missing from customizing.
    regards,
    PP

  • HTML style not visible in Peoplesoft But able to view in Preview RTF templa

    Hi Team,
    Anyone help me urgent. I am not able to view the HTML style in HyperLink in Peoplesoft Online. But i am able to view in Preview tab. I am wondering.
    i.e. My data's are able to view in online but tables that border are not visible. But it works in preview table. Can anyone guide me on this. Please?
    This is the code snippet which i have used in RTF template: (Cross tab report).
    <?for-each-group@column:row;./RANGESIZE?>
    <?RANGESIZE?>
    <?end for-each-group?>
    <?for-each-group:row;./EP_RATING?><?variable@incontext:G1;current-group()?>
    <?EP_RATING?>
    <?for-each-group@cell:/query/row;./RANGESIZE?>
    <?$G1[(./RANGESIZE=current()/RANGESIZE)]/Y_MINIMUM_PCT?>
    <?$G1[(./RANGESIZE=current()/RANGESIZE)]/Y_MAXIMUM_PCT?>
    <?end for-each-group?>
    <?end for-each-group?>
    Edited by: 1006631 on May 21, 2013 1:44 AM

    I would recommend to look very closely and the way the default role is defined in the client 000 Homepage Framework and use this structure and defintions as a guide for implementing your custom role
    In particular the Bank service must be linked to a resource which must point to the required location in the PCD
    Best wishes
    Stuart

  • My new folders are not visible in Finder

    New folders (generated by a application, SABNZB+, that runs in the background as a web service) will only show up in Finder once I have run a search in Finder and are not visible before. I have tried a disk repair and a permissions rebuild.
    Any ideas anyone?

    Yes they do, no problems there.
    I am starting to believe it might have to do with the fact that the folders are created by an unarchiver that reassembles files after they are downloaded from my newsgroup. The strange thing is that there never used to be a problem, it started somewhere around the second update to mountain lion. But it could also be a new version of the application SABNzb+, I am not sure.
    What is also weird is this: I can find the folder when doing a search in Finder, then open the folder, all files are there and the folder is then visible normally.
    Edit: The files are reassembled by the unarchiver on the main Macintosh HD, then moved to a different volume and deleted from the originating volume. 

  • New Content Editor not displaying website with CSS

    I am sure I am doing something wrong, but I just am not sure where to start. I am able to edit my website under the old InContext editor and it displays just fine:
    However, when I try using the new Content Editor, this is what I see:
    What am I doing wrong? I am using dreamweaver to upload my site. I can't figure it out.

    It' a known issue, pages displayed in the new ICE fail to load relative resources.CSS, images, scripts.
    As an workaround: use paths relative to the site root to link to resources, always starting wth a slash /.
    For example:
    <link rel="stylesheet" href="/plugins/smallipop/css/contrib/animate.min.css" type="text/css" media="all" title="Screen" />
    Dan Popa

  • Html link not visible as table header in jsp

    Hi,
    I am not sure if this question belongs to JSP forum, since it's happening in JSP page I am posting it here.
    I am seeing this strange problem, in my JSP page all the link are looking fine except some links in Table header. Here is the code snippet:
    <th align="left" width="30%"><html:link action="/myAction.do?sortBy=org&all=${param.all}">Organization Name</html:link></th>
    ENV is struts, jstl, html.
    Now the problem is the text Organization Name is not visible, although it's there and I can click it. If I click and drag mouse over it I can see it.
    Also if I put this link anywhere else e.g. <TD> I can see it.
    I am not sure why it's happening.
    Please help me.
    Abhishek

    Sounds like a style issue - is it the same colour as the background for some reason?
    What styles have you got applied to your <th> columns? The text in them?
    Are you using css?

  • New mail messages not visible--"detected corrupt database" related?

    I am using Mail.app and an iPod Touch with an Exchange server (Intermedia). All of a sudden in the last few days, recent mail on the server is not visible using Mail.app or the iPod Touch. I have deleted the mail accounts on both devices twice and done an entirely fresh download of all mail on both, and the problem persists.
    Mail in the Inbox is visible. However, if I move an Inbox message to, say, Archive or Travel, then it becomes invisible--even though it is intact on the server and in its proper location there.
    I have also repaired permissions and run sudo daily/weekly/monthly maintenance processes, to no avail.
    In the console, I see the following error message. Could this be related and is there a way to fix it?
    Jul 17 11:14:36 xxx-xxxx-macbook Mail[108]: ISyncDataDirectoryCorruptedException: detected corrupt database while executing delete from Record
    Thanks for any help.
    Message was edited by: RKNYC

    Update: all messages are viewable in Entourage Exchange Web Services 2008, but not in Apple Mail, or in Mail on my iPod Touch, or after a new download of all mail on another Mac in Mail.app. Why is Entourage able to see all the messages while all the Apple Mail clients are missing them?

  • News Text is not visible in News iview

    Hi All,
    I have created a news form similat to standard one, but i am able to see the date, author, title, body and readmore link but not abel to see  News text.
    what may be the reason, i want similar functionality as that of standard one.
    is Show form or RenderlistItem which one will be seen in iView
    New iView
    Test News (If click on this another window will open with the below content and News text)
    Date      Administrator
    Test News
    Read More
    Regards,
    Murali
    Edited by: Murali Manohar on May 4, 2008 5:35 AM
    Edited by: Murali Manohar on May 4, 2008 5:50 AM

    Hi Murali,
    Its all depends upon your design of xml forms. Normally you will provide little information in the Renderlist Form like (Title, Image, Date )
    In the Show Form, complete information about the news. For ex: Title, Image, Date, Author, Text, Readmore etc..
    correct me if i am wrong, You probably might not placed "Text" field either in the RenderList Form and Show Form.
    If you've created Schema for "Text" and placed either of the forms then it should show.
    Best Regards,
    Satya

  • The background colour bar below Mozilla Firefox Start Page is black and I can see the print. Only Web is showing in white and images, news, etc. is not visible. What to do

    There is an items bar which allows one to go directly to the news. The bar items are: Web, Images, Videos, Maps, News, Shopping, more.. The background color was either white or gray with blue print. Now the background color is black and I can barely see the items to click on. I downloaded Firefox twice and the problem is the same.

    That is a Google experiment:
    * http://googlesystem.blogspot.com/2011/06/googles-experimental-black-navigation.html
    * http://googleblog.blogspot.com/2011/06/evolving-google-design-and-experience.html
    * http://googleblog.blogspot.com/2010/05/spring-metamorphosis-googles-new-look.html
    * http://forums.mozillazine.org/viewtopic.php?f=7&t=2239295
    * http://userscripts.org/scripts/review/105744 Source for "Google Bar Classic"

  • Property Editor not visible

    For some reason my property editor window can no longer be seen. When I select View->Property Editor nothing shows. My current window loses focus, but no editor appears. The same happens when I use the shortcut Alt-6. I have the same problem with the Document Structure Window. Double clicking on items in the Data Palette does not bring up the Property Editor either.
    The best I can figure is that I accidentally dragged the window off screen or something. I've even uninstalled and deleted my entire BEA_HOME directory and reinstalled, but that did not fix anything.
    Any ideas how I can get my Property Editor back?
    Thanks.

    Did you try selecting portal components like books, pages, portlets. I have seen this problem too. But it would go away when you restart workshop.
    --SJ                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • In search of a logical solution for my problem

    Hello Experts, I have this piece of complex code with a big big issue. ok first thing first Here is a sample of my file: Retailer Number:  200113              Terminal Number:  20011300       Retailer Name:  Mini Prix Boutique                 -------

  • Bullets in a text field box

    Every time I paste bullets into a text field, they revert to a strange character like a "Y", although they look fine in the edit field. Ideas?

  • Order of fill results?

    Suppose we have a series of fills: service1.fill(list1); service2.fill(list2); service3.fill(list3); etc. Is there any guarantee about the order that the result or fault handlers on the clients will be called? Thanks.

  • Need help with paint (here my code)

    hi, i have problem with my paint method, if i put super.paint(g); all work perfectly but when you draw the program refresh all time, and does like flash effect taht i dotn want (test the code you'll see what im talking about) , and if i dont put supe

  • Why wont any of my Apps sync to my touch?

    I just updated he IOS on my ipod touch to 4.2.1 and downloaded updates to most of my apps. but now when I select apps to install onto my ipod they disappear from the app list on the ipod when syncing begins. they also don't appear on the ipod after s