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 Webbasically my question is ... I always have to replace
infragistics.webui.ultrawebgrid.ultragridrow with igtbl:UltraGridRow
and
infragistics.webui.ultrawebgrid.ultragridcellwithigtbl:UltraGridCell
infragistics.webui.ultrawebgrid.ultragridcolumnwithigtbl:UltraGridColumnI should note that when I drop the WebCombo from the designer into my code, it generates this tag:igcmbo:WebComboand it creates this in the .CS file:protected global::Infragistics.WebUI.WebCombo.WebCombo WebCombo1;
Why does it always change back to infragistics.webui.ultrawebgrid.XXXXXXinstead 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 pageWhat 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"/>
</
This is also a similar problem, in the same aspx page ...Appears like this, with error
infragistics.webui.ultrawebgrid.ultragridrow height="">
<cells
>
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 thisthis works:
igtbl:UltraGridRow Height="">
Hi Infragistics !
I'm still waiting for your reply on this issue !!!!!!!
I'm constantly needing to do CTRL + H (replace)
infragistics.webui.ultrawebgrid.ultragridrowigtbl:UltraGridRow
infragistics.webui.ultrawebgrid.ultragridcelligtbl:UltraGridCell
infragistics.webui.ultrawebgrid.ultragridcolumnigtbl:UltraGridColumn
I've created a notepad file with this to make it quicker ... I have to to this every single time I change the .aspx pages ...... which are using the WebCombo controls !
Please have a look at this ... probably a version conflict, I'm using the latest version,and I have no references to older versions in the solution, I've carefully checked that.BUT I have v9.1 in the GAC for instance, because I need it for other projects!
rgd,EE.
Hello EE,
Please create a support ticket and refer this forum posts:
http://ko.infragistics.com/support/default.aspx#Overview
Thanks!
I've found out a walk-around for this problem ...
instead of putting all the references in the web.config ( which is what the upgrate tool from you guys did )I moved the references back to the pages themselfs again ... then this won't happen anymore !
rgd,EE
p.s. I'd still want to have the references all in ONE place ( web.config ) instead of inside all the pages which use the control .... but hey, if this works then OK