-
Hello, Thank you for submitting your query with the ComponentArt forum. I have gone through the description provided by you and it seems that you are facing some issue while using the editor control inside the multipage associated with tab strip. I tried to reproduce the issue by making a sample application where I have used the editor control (Archtic White Core feature) inside the multipage (on second page) associated with tab strip. I just copied the markup of editor in the page view of multipage...
-
Hi, The easiest workaround would be to explicitly call render on tba, when the tab containing it is shown. < ClientEvents > < TabSelect eventHandler = "onSelect" /> </ ClientEvents > function onSelect(sender, e) { if (e.get_tab().id == " the id we're lookingfor ") { tba.render(); } } Hope this helps. Cheers,
-
Here is a working sample, it is based on the scrolling_tabgroups sample: <%@ Page Language="C#" %> <%@ Register TagPrefix="ComponentArt" Namespace="ComponentArt.Web.UI" Assembly="ComponentArt.Web.UI" %> < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > < html xmlns = "http://www.w3.org/1999/xhtml" xml : lang = "en" lang = "en"...
-
Hi, TabStripTab has a PageViewID property which can be assigned to select the PageView which you want to show. You can set this in XML or CodeBehind / ClientCode depending on your implementation. Hope this helps. Cheers,
-
Hi, Here is the TabStrip Client Side demo, where I added the prototype.js file, and it is working fine for me. You can download the sample by clicking the link below the title. I have tested this in 2009.2.1509.3. Hope this helps. Cheers,