<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Implementing HTML Editor in Dynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018427#M713486</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using Activex in custom control is the better solution to implement any 3rd party editors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Nov 2007 07:33:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-15T07:33:24Z</dc:date>
    <item>
      <title>Implementing HTML Editor in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018424#M713483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  How to implement the HTML Editor in Dynpro ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 05:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018424#M713483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T05:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing HTML Editor in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018425#M713484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the following threads it clearly explained for ur question,it will be very usefull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="950301"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="417834"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1050450"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u do this way&lt;/P&gt;&lt;P&gt;Give the source of text edit as context variable of binary type &lt;/P&gt;&lt;P&gt;In the DoInit() method write the code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IWDAttributeInfo attr = wdContext.getNodeInfo().getAttribute("Data"); &lt;/P&gt;&lt;P&gt;type = attr.getModifiableSimpleType(); &lt;/P&gt;&lt;P&gt;ISimpleTypeModifiable type;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;defined as a global variable. and u Insert a Iframe and set the source as a context variable Source (String type). andInsert a button with text as Display and create an action as OnActionDisplay(). In that action write the code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wdContext.currentContextElement.setSource(type.format(wdContext.currentContextElement().getData())); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u see this thread also, this is helpful to u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="531356"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following link for help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="87459"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would sujjest you to go for JSPDYN Pages where in you have been provided with HTML editor.&lt;/P&gt;&lt;P&gt;Please check my Blog below for more information&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/anil.dichpally/blog/2007/04/25/jsp-dyn-pages-with-an-example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using a Iframe UI u can give the source as the path to this html file(the javascript code). But everytime a event occurs the content i the IFrame UI gets refreshed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u have to just display a content in Iframe UI its fine. If u r planning to navigate inside it ..it wont work out . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can fire a exit plug to the javscript code if its the last step in ur application or u can fork a process and create a external window with this url.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me reward points...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 05:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018425#M713484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T05:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing HTML Editor in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018426#M713485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The links that you have given seems to be for WebDynpro Implementation.&lt;/P&gt;&lt;P&gt; I think we need to implement this using the custom container's activex  control.&lt;/P&gt;&lt;P&gt; /people/thomas.jung3/blog/2005/05/11/using-classic-activex-controls-in-the-abap-control-framework&lt;/P&gt;&lt;P&gt; Thanks for your links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 07:29:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018426#M713485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T07:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing HTML Editor in Dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018427#M713486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using Activex in custom control is the better solution to implement any 3rd party editors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 07:33:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-html-editor-in-dynpro/m-p/3018427#M713486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T07:33:24Z</dc:date>
    </item>
  </channel>
</rss>

