<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>John Selkirk - GIS Development &#187; Infragistics</title>
	<atom:link href="http://john.selkirks.net/category/infragistics/feed/" rel="self" type="application/rss+xml" />
	<link>http://john.selkirks.net</link>
	<description>My thoughts on development with an emphasis on GIS</description>
	<lastBuildDate>Fri, 21 Aug 2009 12:41:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Resize Infragistics UltraDropDown column in UltraWinGrid</title>
		<link>http://john.selkirks.net/2009/06/07/resize-infragistics-ultradropdown-column-in-ultrawingrid/</link>
		<comments>http://john.selkirks.net/2009/06/07/resize-infragistics-ultradropdown-column-in-ultrawingrid/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 18:43:39 +0000</pubDate>
		<dc:creator>John Selkirk</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Infragistics]]></category>

		<guid isPermaLink="false">http://john.selkirks.net/?p=83</guid>
		<description><![CDATA[One of the annoying things when using the UltraDropDown with a UltraWinGrid is that it refuses to resize the dropdown, and the columns in it, by default. This is at least in the Infragistics version that I a using (v8.3). After a bunch of searching + trial and error I managed to solve the issue.
The [...]]]></description>
			<content:encoded><![CDATA[<p>One of the annoying things when using the UltraDropDown with a UltraWinGrid is that it refuses to resize the dropdown, and the columns in it, by default. This is at least in the Infragistics version that I a using (v8.3). After a bunch of searching + trial and error I managed to solve the issue.</p>
<p>The information to solve it ends up being on the Infragistics support forums but it NEVER cm up on any search that I ran. I essentially got lucky by finding it through a a set of links in forum entries.</p>
<p><a href="http://blogs.infragistics.com/forums/p/23539/86168.aspx">http://blogs.infragistics.com/forums/p/23539/86168.aspx</a></p>
<p>Turns out of is a bug, go figure. The workaround plus then setting the width of the underlying column to that width (minus 2 so it doesn not show the scroll bars) worked like a charm.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.selkirks.net/2009/06/07/resize-infragistics-ultradropdown-column-in-ultrawingrid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infragistics AfterCellUpdate event and when it is triggered</title>
		<link>http://john.selkirks.net/2008/09/03/infragistics-aftercellupdate-event-and-when-it-is-triggered/</link>
		<comments>http://john.selkirks.net/2008/09/03/infragistics-aftercellupdate-event-and-when-it-is-triggered/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 14:41:51 +0000</pubDate>
		<dc:creator>John Selkirk</dc:creator>
				<category><![CDATA[Infragistics]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://john.selkirks.net/2008/09/03/infragistics-aftercellupdate-event-and-when-it-is-triggered/</guid>
		<description><![CDATA[Yet another Infragistics post. I have been battling a defect where the event for a cell being updated was not being triggered until the the use placed the focus on a different cell.
It turns out that I should not be using the AfterCellUpdate event but rather the CellChange event instead.
The former is raised when focus [...]]]></description>
			<content:encoded><![CDATA[<p>Yet another Infragistics post. I have been battling a defect where the event for a cell being updated was not being triggered until the the use placed the focus on a different cell.</p>
<p>It turns out that I should not be using the <a href="http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Infragistics2.Win.UltraWinGrid.v8.2~Infragistics.Win.UltraWinGrid.UltraGrid~AfterCellUpdate_EV.html">AfterCellUpdate</a> event but rather the <a href="http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Infragistics2.Win.UltraWinGrid.v8.2~Infragistics.Win.UltraWinGrid.UltraGrid~CellChange_EV.html">CellChange</a> event instead.</p>
<p>The former is raised when focus is lost the latter is triggered EVERY time it is changed. Since I am wanting to know when the embedded CheckBox is clicked I am fine with that.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.selkirks.net/2008/09/03/infragistics-aftercellupdate-event-and-when-it-is-triggered/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infragistics first row in UltraWinGrid selected</title>
		<link>http://john.selkirks.net/2008/08/19/infragistics-first-row-in-ultrawingrid-selected/</link>
		<comments>http://john.selkirks.net/2008/08/19/infragistics-first-row-in-ultrawingrid-selected/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 14:05:04 +0000</pubDate>
		<dc:creator>John Selkirk</dc:creator>
				<category><![CDATA[Infragistics]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://john.selkirks.net/2008/08/19/infragistics-first-row-in-ultrawingrid-selected/</guid>
		<description><![CDATA[The project that I am working on right now makes heavy use of Infragistics controls and in particular the UltraWinGrid. There has been a bug in the application for a while now that anytime the grid is refreshed the first row in the grid is also selected.
The weird thing is that in the code grid.Rows.Selected.Count [...]]]></description>
			<content:encoded><![CDATA[<p>The project that I am working on right now makes heavy use of Infragistics controls and in particular the UltraWinGrid. There has been a bug in the application for a while now that anytime the grid is refreshed the first row in the grid is also selected.</p>
<p>The weird thing is that in the code grid.Rows.Selected.Count == 0.</p>
<p>I have had other battles to fight so have left one alone. Until now.</p>
<p>It turns out that the row is not selected but is the <a href="http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=1701">active row</a>.</p>
<p>There are two options, and I recommend doing both:</p>
<p>Set the ActiveRow appearance so that it does not look like it is selected. <a href="http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.Aspx?ArticleID=10117">Instructions</a>.</p>
<p>After setting a row as selected, make it the active row using grid.ActiveRow = row;</p>
]]></content:encoded>
			<wfw:commentRss>http://john.selkirks.net/2008/08/19/infragistics-first-row-in-ultrawingrid-selected/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hide Selection using Infragistics</title>
		<link>http://john.selkirks.net/2008/04/11/hide-selection-using-infragistics/</link>
		<comments>http://john.selkirks.net/2008/04/11/hide-selection-using-infragistics/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 17:24:20 +0000</pubDate>
		<dc:creator>John Selkirk</dc:creator>
				<category><![CDATA[Infragistics]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://john.selkirks.net/?p=41</guid>
		<description><![CDATA[One of the most annoying things that I have seen from Infragistics, an otherwise brilliant company, is the fact that when any of their controls lose focus the selected item is not longer selected!
This has been so annoying for a long time for me and I have finally found the property on the control that [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most annoying things that I have seen from <a href="http://infragistics.com" target="_blank">Infragistics</a>, an otherwise brilliant company, is the fact that when any of their controls lose focus the selected item is not longer selected!</p>
<p>This has been so annoying for a long time for me and I have finally found the property on the control that stops it from happening.</p>
<p>The property name is <a href="http://help.infragistics.com/Help/NetAdvantage/NET/2007.2/CLR2.0/html/Infragistics2.Win.v7.2~Infragistics.Win.FormattedLinkLabel.FormattedLinkEditor~HideSelection.html" target="_blank">HideSelection</a> and by default is set to true. Setting this value to false makes the selected item in that control (implemented by all Infragistics controls I think) keep the item selected when it does not have focus.</p>
<p>Simple thing. Yes. Bugged me for months. Definitely.</p>
]]></content:encoded>
			<wfw:commentRss>http://john.selkirks.net/2008/04/11/hide-selection-using-infragistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
