Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
Migration UltraWebTab to WebTab
posted

when using UltraWebTab  on codebehind I had code in this way:

UltraWebTab1.Tabs.GetTab(1).ContentPane.TargetUrl= "about:blank";

I already know that to set a tab I must write now: this.UltraWebTab1.Tabs[0] but I don't find how to set the targetUrl

Parents
No Data
Reply
  • 18204
    Suggested Answer
    Offline posted

    Hello GPanebianco,

    Thank you for posting in our forums!

    The equivalent to the TargetUrl property in the new WebTab is ContentUrl.  This can be accessed directly from the ContentTabItem class.  You can use the following code to set it:

    this.WebTab1.Tabs[1].ContentUrl = "about:blank";

    If you need any further assistance with this, please let me know and I will be glad to help.

Children