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
821
WebSplitter Control in Markup - Intellisense -
posted

Hello Dear

I've noticed that the websplitter control does not show intellisense, and I get an editor Tooltip when hovering over it; "WebSplitter ist not a known element. This can occur if there are errors in the site or the appconfig file ist missing". But it works with panels, grids, groupboxes etc. but not with the splitter control. The project itself should be ok, I installed Infragistics with the upgrad utility.

What sepcial;

I've registered all my controls in the appconfig, with the prefixes. But when I put a grid into the markup, it also adds the "register" directive to the page (same for panel, groupbox) but when I put a splitter control into the markup, there is not such register tag.

Can you help me getting my intellisense working on splittercontrol?

Greetings

My Appconfig;

        <add assembly="Infragistics2.WebUI.Misc.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.Shared.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.WebDataInput.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.UltraWebGrid.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.UltraWebNavigator.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.WebHtmlEditor.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.UltraWebToolbar.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.Web.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.WebDateChooser.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.WebSchedule.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
        <add assembly="Infragistics2.WebUI.UltraWebTab.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />

My prefix definition:

        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
        <add tagPrefix="ignav" namespace="Infragistics.WebUI.UltraWebNavigator" assembly="Infragistics2.WebUI.UltraWebNavigator.v8.3" />
        <add tagPrefix="igtxt" namespace="Infragistics.WebUI.WebDataInput" assembly="Infragistics2.WebUI.WebDataInput.v8.3" />
        <add tagPrefix="igmisc" namespace="Infragistics.WebUI.Misc" assembly="Infragistics2.WebUI.Misc.v8.3" />
        <add tagPrefix="igtbl" namespace="Infragistics.WebUI.UltraWebGrid" assembly="Infragistics2.WebUI.UltraWebGrid.v8.3" />
        <add tagPrefix="igtbar" namespace="Infragistics.WebUI.UltraWebToolbar" assembly="Infragistics2.WebUI.UltraWebToolbar.v8.3" />
        <add tagPrefix="igtab" namespace="Infragistics.WebUI.UltraWebTab" assembly="Infragistics2.WebUI.UltraWebTab.v8.3" />
        <add tagPrefix="ighedit" namespace="Infragistics.WebUI.WebHtmlEditor" assembly="Infragistics2.WebUI.WebHtmlEditor.v8.3" />
        <add tagPrefix="ig" namespace="Infragistics.Web.UI.LayoutControls" assembly="Infragistics2.Web.v8.3" />
        <add tagPrefix="igsch" namespace="Infragistics.WebUI.WebSchedule" assembly="Infragistics2.WebUI.WebDateChooser.v8.3" />

  • 821
    Offline posted

    When I add this manually;

    <%@ Register Assembly="Infragistics2.Web.v8.3, Version=8.3.20083.2059, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
        Namespace="Infragistics.Web.UI.LayoutControls" TagPrefix="ig" %>

    Then my intellisense will be shown. Is there a known issue with not adding this prefix for the splitter control?