﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebTextEditor - WebTextEditor - Multiple editors - even just two - on same page do not work properly</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Multiple-editors---even-just-two---on-same-page-do-not-work-properly/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WebTextEditor - Multiple editors - even just two - on same page do not work properly</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Multiple-editors---even-just-two---on-same-page-do-not-work-properly/</link><pubDate>Tue, 23 Oct 2012 21:22:08 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebTextEditor</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I’m going to check the differences between those two tab pages. Please bear with me while I investigate which elements or styles that may have caused the problem.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WebTextEditor - Multiple editors - even just two - on same page do not work properly</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Multiple-editors---even-just-two---on-same-page-do-not-work-properly/</link><pubDate>Tue, 23 Oct 2012 16:04:31 GMT</pubDate><dc:creator>JNguimb</dc:creator><category>WebTextEditor</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;OnAfterTabChanged has resolved the toolbar issue.  Thank you.&lt;/p&gt;
&lt;p&gt;Please let me know when you have a solution for the 2px discrepancy between the two editors in Firefox.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Jean&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>WebTextEditor - Multiple editors - even just two - on same page do not work properly</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Multiple-editors---even-just-two---on-same-page-do-not-work-properly/</link><pubDate>Tue, 23 Oct 2012 03:50:59 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebTextEditor</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I tried to reproduce the problem in my local test by creating a simple page of WebTab, WebTab ID is WebTab1. The WebTab has 2 tab pages where the content is inline. Both of the tab pages have identical WebTextEditor except for their id.&lt;/span&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;strong&gt;In IE9:&lt;/strong&gt; only the first editor will display the complete toolbar.The toolbarsof the other editors on the pageeither do not show completely (if standard mode is used, for example) or do not show at all (if Complete or Rich modes are used, for example), until youresize the browser or switch back-and-forth betweenthe viewmodes at the bottom of the editor.&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I was able to reproduce the reported problem in my local end. To overcome this issue, I add OnAfterTabChanged client side event of WebTab. In the OnAfterTabChanged event, invoke the ResizeHeader() method of WebTextEditor.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The code in .aspx file&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;ISWebDesktop:WebTab ID="WebTab1" runat="server" Height="600px" Width="800px"&amp;gt;
    &amp;lt;ClientSideEvents OnAfterTabChanged="WebTab1_OnAfterTabChanged()" /&amp;gt;
    &amp;lt;TabPages&amp;gt;
        &amp;lt;ISWebDesktop:WebTabItem Name="Tab1" Text="Overview"&amp;gt;
            &amp;lt;PageTemplate&amp;gt;
                &amp;lt;ISWebTextEditor:WebTextEditor ID="WebTextEditor1" runat="server" Height="100%" Width="100%"&amp;gt;
                    ...
                &amp;lt;/ISWebTextEditor:WebTextEditor&amp;gt;
            &amp;lt;/PageTemplate&amp;gt;
        &amp;lt;/ISWebDesktop:WebTabItem&amp;gt;
        &amp;lt;ISWebDesktop:WebTabItem Name="Tab2" Text="Overview2"&amp;gt;
            &amp;lt;PageTemplate&amp;gt;
                &amp;lt;ISWebTextEditor:WebTextEditor ID="WebTextEditor2" runat="server" Height="100%" Width="100%"&amp;gt;
                    ...
                &amp;lt;/ISWebTextEditor:WebTextEditor&amp;gt;
            &amp;lt;/PageTemplate&amp;gt;
        &amp;lt;/ISWebDesktop:WebTabItem&amp;gt;
    &amp;lt;/TabPages&amp;gt;
&amp;lt;/ISWebDesktop:WebTab&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The JavaScript function&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;function WebTab1_OnAfterTabChanged()
{
    var rte = ISGetObject("WebTextEditor2");
    rte.ResizeHeader();
            
    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I have tested this approach on IE 9 and Firefox 16.01 with a good result.&lt;/span&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;strong&gt;In Firefox:&lt;/strong&gt; The toolbars are displayed without problem, but the two editors, whichare exactly the same, except fortheir id, do not have exactly the same size.You can see one of the editors "moving up or down"when switching between the two tabs.&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I was also able to reproduce the “moving up or down” problem in Firefox browser. After inspect the difference using FireBug, I found 2px height difference between frame element of WebTextEditor which is located in tab page 1 and tab page 2.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;This 2px height difference happens on the content area of WebTextEditor. I will continue the investigation to find out what may cause the problematic layout.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Please let us hear your feedback whether it helps or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WebTextEditor - Multiple editors - even just two - on same page do not work properly</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Multiple-editors---even-just-two---on-same-page-do-not-work-properly/</link><pubDate>Mon, 22 Oct 2012 10:47:43 GMT</pubDate><dc:creator>JNguimb</dc:creator><category>WebTextEditor</category><description>&lt;p&gt;Hello:&lt;/p&gt;
&lt;p&gt;When you place multiple editors, even only two, on the same page, in a container such as WebTab, or divs that you show and hide simultaneously, the toolbars in the editors will not work properly. I have tested this in IE9 and Firefox 15 and 16.&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #000000"&gt;&lt;strong&gt;In IE9:&lt;/strong&gt;&lt;/span&gt;  only the first editor will display the complete toolbar.  The toolbars of the other editors on the page either do not show completely (if standard mode is used, for example) or do not show at all (if Complete or Rich modes are used, for example), until you resize the browser or switch back-and-forth between the view modes at the bottom of the editor.  Somebody has previosuly raised this issue here: &lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.intersoftpt.com/Community/WebTextEditor/WebTextEditor-Problems/"&gt;http://www.intersoftpt.com/Community/WebTextEditor/WebTextEditor-Problems/&lt;/a&gt;&lt;span style="color: #000000"&gt;; I do not&amp;nbsp;believe that this was&amp;nbsp;resolved.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;This issue does not exist in IE if doctype XHTML is used.  But I need to have two editors in WebTab, one editor per tab, in PanaManager; and your PanaManager does not support XHTML.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;In Firefox:&lt;/strong&gt; The toolbars are displayed without problem, but the two editors, which are exactly the same, except for their id, do not have exactly the same size.  You can see one of the editors "moving up or down" when switching between the two tabs.&lt;/p&gt;
&lt;p&gt;Please provide a fix to ensure that multiple editors work properly when placed in tabs or divs, and regardless of the doctype used.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Jean      &lt;/p&gt;</description></item></channel></rss>