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
1510
Problem with WebCombo v9.2
posted

Hi there!

Can you please help me dealing with this very annoying problem using WebCombo v9.2 ...

I'm getting this error in html-code-view:

Warning 23 Generation of designer file failed: Infragistics.WebUI.UltraWebGrid.ColumnsCollection must have items of type 'Infragistics.WebUI.UltraWebGrid.UltraGridColumn'. 'infragistics.webui.ultrawebgrid.ultragridcolumn' is of type 'System.Web.UI.HtmlControls.HtmlGenericControl'. C:\Verkefni\VS.NET\CustomerLendingLedger\Kaupthing.CustomerLendingLedger\Web\ListBusinessPartners.aspx 69 0 Web

basically my question is ... I always have to replace

infragistics.webui.ultrawebgrid.ultragridrow
with
igtbl:UltraGridRow

and

infragistics.webui.ultrawebgrid.ultragridcell
with
igtbl:UltraGridCell

and

infragistics.webui.ultrawebgrid.ultragridcolumn
with
igtbl:UltraGridColumn

I should note that when I drop the WebCombo from the designer into my code, it generates this tag:
igcmbo:WebCombo
and it creates this in the .CS file:
protected global::Infragistics.WebUI.WebCombo.WebCombo WebCombo1;

Why does it always change back to infragistics.webui.ultrawebgrid.XXXXXX
instead of using the other one, when I close and re-open the ASPX?!

When I correct these lines from this ( which does NOT work! named "figure1" from here on ):
<infragistics.webui.ultrawebgrid.ultragridcolumn>
<
header caption="Column0"></header>
</
infragistics.webui.ultrawebgrid.ultragridcolumn>

To this ( which works 100%, named "figure2" from here on ):
<igtbl:UltraGridColumn>
<Header Caption=""></Header>
</igtbl:UltraGridColumn>

It will always change back to "figure1" when I close the form and re-open it ...
and then I have to do this again, and again ... every time I open up the aspx page

What is going on ??? Is this some kind of .DLL conflict between Infragistics version or what is going on ???

p.s. I'm using this upgrate from your site,
NetAdvantage_ASPNET_20092.2025_SR

Kind regards,
EE.

p.s. This is a part of my web.config ( is the conflict coming from that ?! )
- I tried commenting out this line, but doesn't matter ...

<!--

 

 

<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>-->

 

 

 



<

 

 

pages>

<

 

 

controls>

<

 

 

add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

<

 

 

add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

<

 

 

add tagPrefix="igmisc" namespace="Infragistics.WebUI.Misc" assembly="Infragistics35.WebUI.Misc.v9.2"/>

<

 

 

add tagPrefix="igcmbo" namespace="Infragistics.WebUI.WebCombo" assembly="Infragistics35.WebUI.WebCombo.v9.2"/>

<

 

 

add tagPrefix="igtbl" namespace="Infragistics.WebUI.UltraWebGrid" assembly="Infragistics35.WebUI.UltraWebGrid.v9.2"/>

<

 

 

add tagPrefix="ignav" namespace="Infragistics.WebUI.UltraWebNavigator" assembly="Infragistics35.WebUI.UltraWebNavigator.v9.2"/>

<

 

 

add tagPrefix="igtbldocexp" namespace="Infragistics.WebUI.UltraWebGrid.DocumentExport" assembly="Infragistics35.WebUI.UltraWebGrid.DocumentExport.v9.2"/>

<

 

 

add tagPrefix="igtblexp" namespace="Infragistics.WebUI.UltraWebGrid.ExcelExport" assembly="Infragistics35.WebUI.UltraWebGrid.ExcelExport.v9.2"/>

<

 

 

add tagPrefix="igsch" namespace="Infragistics.WebUI.WebSchedule" assembly="Infragistics35.WebUI.WebDateChooser.v9.2"/>

<

 

 

add tagPrefix="igtxt" namespace="Infragistics.WebUI.WebDataInput" assembly="Infragistics35.WebUI.WebDataInput.v9.2"/>

</

 

 

controls>

</

 

 

pages>

 

This is also a similar problem, in the same aspx page ...
Appears like this, with error

<

 

infragistics.webui.ultrawebgrid.ultragridrow height="">

 

 

 

 

 

 

<cells

>

 

 

 

<infragistics.webui.ultrawebgrid.ultragridcell></infragistics.webui.ultrawebgrid.ultragridcell

>

 

 

 

</cells

>

 

 

 

</infragistics.webui.ultrawebgrid.ultragridrow>

 

and I have to change it to this to work ( every time I open the ASPX it changes back to the stuff that does NOT work and I have to re-change it ! ) - like this

this works:

<

 

igtbl:UltraGridRow Height="">

 

 

 

 

 

<Cells

>

 

 

<igtbl:UltraGridCell></igtbl:UltraGridCell

>

 

 

</Cells>

 

 

</igtbl:UltraGridRow

>