<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : How to display multiple columns in a LookupEdit</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce Classic : How to display multiple columns in a LookupEdit</description>
  <pubDate>Tue, 21 May 2013 07:03:39 -700</pubDate>
  <lastBuildDate>Thu, 21 Jan 2010 11:48:12 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=259</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>How to display multiple columns in a LookupEdit : I&amp;#039;ve had success using GetPropertyDescriptors...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=6103#6103</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=517" rel="nofollow">cblevins</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 21-Jan-2010 at 11:48am<br /><br /><DIV>I've had success using GetPropertyDescriptors to access nested properties in LookUpEdit controls.</DIV><DIV>&nbsp;</DIV><DIV>// ProductLookupEdit<BR> this.ProductLookupEdit.Properties.Columns.AddRange(new <SPAN =highlight>DevExpress</SPAN>.XtraEditors.Controls.LookUpColumnInfo&#091;&#093; {<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; new LookUpColumnInfo("DefaultSort", "DefaultSort", 74, ColumnSortOrder.Ascending),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo(<strong>bsProducts.GetPropertyDescriptor("ProductType.ProductTypeName").Name</strong>, "ProductType", 67),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("ProductName", "Product Name", 70),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo(<strong>bsProducts.GetPropertyDescriptor("Event.EventName").Name</strong>, "Related Event", 34)<BR>});<BR>this.ProductLookupEdit.Properties.DataSource = this.bsProducts;<BR>this.ProductLookupEdit.Properties.DisplayMember = "ProductName";<BR>this.ProductLookupEdit.Properties.NullText = "&#091;Choose a Product&#093;";<BR>this.ProductLookupEdit.Properties.ValueMember = "ProductGUID";<BR></DIV><DIV>Hope this helps,</DIV><DIV>Chris</DIV>]]>
   </description>
   <pubDate>Thu, 21 Jan 2010 11:48:12 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=6103#6103</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : Hi Heather / puctx,  Thankyou...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5096#5096</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=444" rel="nofollow">toddb</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 02-Aug-2009 at 4:14pm<br /><br />Hi Heather / puctx,<DIV>&nbsp;</DIV><DIV>Thankyou both for your replies and suggestions. I had a sinking feeling I was going to have to touch each object in 'some' way. Based on my initial tests, the nested properties seem to work 'ok' with a number of standard .NET controls so I have sent a few emails back and forth to the DevExpress&nbsp;team suggesting that the whole nested property issue could be supported a little better. I'll post back here if I get a 'positive' response. In the mean time "quick-n-dirty" it will have to be :)</DIV><DIV>&nbsp;</DIV><DIV>Kind regards,</DIV><DIV>Todd.</DIV>]]>
   </description>
   <pubDate>Sun, 02 Aug 2009 16:14:34 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5096#5096</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : Hi Todd, No, I never got it working...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5086#5086</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=92" rel="nofollow">HFloyd</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 31-Jul-2009 at 8:47am<br /><br />Hi Todd, <br><br>No, I never got it working with extended properties. What I ended up doing was adding additional "calculated" properties to my business objects that I could reference directly.<br><br>For instance, For the Product object, with a relation to an Event object, which I wanted to display via Event.EventName, I added a new property to the Product object (something like this pseudo-code):<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Product class:<br><br>string RelatedEventName {<br>&nbsp;return this.Event.EventName<br>}</pre></td></tr></table><br><br>This is annoying because it clutters the objects a&nbsp; bit, and you have to do it for whatever "labels" you want to use, but it did work. <br><br>It is a "quick-n-dirty" solution. Perhaps it will help you.<br><br>Good luck, <br><br>Heather<br>]]>
   </description>
   <pubDate>Fri, 31 Jul 2009 08:47:23 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5086#5086</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : I don&amp;#039;t use the DevForce...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5083#5083</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=300" rel="nofollow">pucsoftware</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 31-Jul-2009 at 6:31am<br /><br />I don't use the DevForce BindingManagers at all anymore. For the most part they worked, except when dealing with complex components from DevExpress&nbsp;like multi column lookups. One thing I discovered while using the BindingManagers&nbsp; though was that it created a "_self" property for the list object that returns an intance of the object type for that record, to be used as&nbsp;a value for the field rather than a simple value. Also, there is a property for fields that have lookup relations to other&nbsp;tables is usually created by DevForce that are named similar to "Employee_fk_Department"&nbsp;for example. This value is the field in the parent table that stores the key value that is used to reference the appropriate record in the lookup table. The issue I have with this property is that you can not rename the property.<DIV>&nbsp;</DIV><DIV>So, in order to get around this I made adjustments to all my partial classes of my Objects that create a _Self property and added nicer property name wrappers for the foriegn key values in the main table. Just be careful that if you rename the Navigation and Associations properties in the DevForce designer that you don't create dup names. Come up with a strategy where, once you get in the visual designers, you know which field you are referencing. </DIV><DIV>&nbsp;</DIV><DIV>For Example, in my partial class</DIV><DIV>&nbsp;</DIV><DIV>//&nbsp;for Employees:</DIV><DIV>&nbsp;&nbsp;&nbsp; /// &lt;summary&gt;Get DepartmentKey from Employee&lt;/summary&gt; <BR>&nbsp;&nbsp;&nbsp; public string EP_DepartmentKey {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; get { return this.Department_fk_DepartmentKey; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set { this.Department_fk_DepartmentKey = value; }<BR>&nbsp;&nbsp;&nbsp; }</DIV><DIV>&nbsp;</DIV><DIV>//&nbsp;for Department:</DIV><DIV>&nbsp;&nbsp;&nbsp; /// &lt;summary&gt;Get Department object&lt;/summary&gt; <BR>&nbsp;&nbsp;&nbsp; public Department _Self {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; get { return this; }<BR>&nbsp;&nbsp;&nbsp; }</DIV><DIV>&nbsp;</DIV><DIV>One note. These two properties don't work in conjunction, they both solve two different issues for binding DevForce objects without using the BindingManagers and only using .NET Binding.</DIV><DIV>&nbsp;</DIV><DIV>If you want to use the DepartmentKey method, then you would bind a lookup using the key value from the lookup table.</DIV><DIV>Otherwise: </DIV><DIV>Main Table Bind Field:&nbsp; DepartmentKey from Employee Table</DIV><DIV>Lkup Table Bind Field: DepartmentKey from Department Table</DIV><DIV>Lkup Table Display Field: DepartmentName from Department Table</DIV><DIV>&nbsp;</DIV><DIV>If you want to use the _Self method, then you would bind the lookup using the _Self value that represents the object.</DIV><DIV><DIV>Main Table Bind Field:&nbsp; Department from Employee Table</DIV><DIV>Lkup Table Bind Field:&nbsp;_Self from Department Table</DIV><DIV>Lkup Table Display Field: DepartmentName from Department Table</DIV></DIV><DIV>&nbsp;</DIV><DIV>Not sure how this works with XtraReports but it works with WinForms controls, XtraGrids, and LookUp Edits, or any other grid Editor i've tried. Hope this helps.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 31 Jul 2009 06:31:25 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5083#5083</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : Hi Heather,  You posted quite...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5081#5081</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=444" rel="nofollow">toddb</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 30-Jul-2009 at 5:14pm<br /><br /><DIV>Hi Heather,</DIV><DIV>&nbsp;</DIV><DIV>You posted quite a few months back about a problem you were having with nested properties and getting them to display in the LookUpEdit control.</DIV><DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td class="BBquote"><strong><em>Originally posted by HFloyd</strong></em><br /><br />Hi,<BR>I was wondering about how to access a nested property to display in a LookupEdit column? If I set the fieldname using the dot notation (aka: "ProductType.ProductTypeName", "Event.EventName")(which works in XtraReports, for instance), I just get a blank value in the column.<BR><BR>Here is my example:<BR><table width="99%"><tr><td><pre class="BBcode"><BR>// ProductLookupEdit<BR>this.ProductLookupEdit.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo&#091;&#093; {<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; new LookUpColumnInfo("DefaultSort", "DefaultSort", 74, ColumnSortOrder.Ascending),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("ProductType.ProductTypeName", "Product Type", 67),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("ProductName", "Product Name", 70),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("Event.EventName", "Related Event", 34)<BR>});<BR>this.ProductLookupEdit.Properties.DataSource = this.bsProducts;<BR>this.ProductLookupEdit.Properties.DisplayMember = "ProductName";<BR>this.ProductLookupEdit.Properties.NullText = "&#091;Choose a Product&#093;";<BR>this.ProductLookupEdit.Properties.ValueMember = "ProductGUID";<BR></pre></td></tr></table><BR><BR>Is there some way I can get the nested properties to show up? <BR><BR>Thanks!<BR><BR>Heather<BR></td></tr></table> </DIV><DIV>&nbsp;</DIV><DIV>I am having the same problem -&nbsp;if you, or anyone else for that matter :), managed to get it working they way you wanted, could you please share with me how exactly how?</DIV><DIV>&nbsp;</DIV><DIV>Kind regards,</DIV><DIV>Todd</DIV>]]>
   </description>
   <pubDate>Thu, 30 Jul 2009 17:14:15 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=5081#5081</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : The way I worked around this is...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3581#3581</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=300" rel="nofollow">pucsoftware</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 06-Nov-2008 at 2:09pm<br /><br />The way I worked around this is to not bind the field that I wanted with the DevForce binding manager. I ended up using a regular DevExpress GridLookup control, set my multiple columns the way I wanted then bound the edit value to the actual binding source control on the form and set the correct field I wanted. This seemed to work fine and saved and updated correctly. I think I also found that if you perform any edit (even in code) to the binding source object the Devforce managers seem to recognize the edit, too. I don't know what is really going on behind the scene and if there are any gotchas to be wary of but it did seem to work Hope this helps... Now if only I get my DevForce EF version working..]]>
   </description>
   <pubDate>Thu, 06 Nov 2008 14:09:31 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3581#3581</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : Thanks for the idea, JeeZ, but...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3580#3580</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=92" rel="nofollow">HFloyd</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 06-Nov-2008 at 1:55pm<br /><br />Thanks for the idea, JeeZ, but it doesn't seem to work. The column is still blank.<span style="font-size: 10px;"> </span>]]>
   </description>
   <pubDate>Thu, 06 Nov 2008 13:55:30 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3580#3580</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit :  Try using the underscore notation...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3466#3466</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=188" rel="nofollow">JeeZ</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 05-Oct-2008 at 9:28pm<br /><br />Try using the underscore notation instead :<br><br><divre><table width="99%"><tr><td><pre class="BBcode">Event.EventName</divre></pre></td></tr></table><br>... becomes ...<br><table width="99%"><tr><td><pre class="BBcode">__Event_EventName</pre></td></tr></table><br><br>... which is the PropertyPath value.<br><br><table width="99%"><tr><td><pre class="BBcode"><br>// ProductLookupEdit<br><divre> this.ProductLookupEdit.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo&#091;&#093; {<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; new LookUpColumnInfo("DefaultSort", "DefaultSort", 74, ColumnSortOrder.Ascending),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("__ProductType_ProductTypeName", "Product Type", 67),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("ProductName", "Product Name", 70),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("__Event_EventName", "Related Event", 34)<br>});<br>this.ProductLookupEdit.Properties.DataSource = this.bsProducts;<br>this.ProductLookupEdit.Properties.DisplayMember = "ProductName";<br>this.ProductLookupEdit.Properties.NullText = "&#091;Choose a Product&#093;";<br>this.ProductLookupEdit.Properties.ValueMember = "ProductGUID";<br></divre></pre></td></tr></table><br><br><span style="font-size:10px"><br /><br />Edited by JeeZ - 05-Oct-2008 at 9:29pm</span>]]>
   </description>
   <pubDate>Sun, 05 Oct 2008 21:28:46 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3466#3466</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : Hi,I was wondering about how to...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3463#3463</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=92" rel="nofollow">HFloyd</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 04-Oct-2008 at 2:10pm<br /><br />Hi,<br>I was wondering about how to access a nested property to display in a LookupEdit column? If I set the fieldname using the dot notation (aka: "ProductType.ProductTypeName", "Event.EventName")(which works in XtraReports, for instance), I just get a blank value in the column.<br><br>Here is my example:<br><table width="99%"><tr><td><pre class="BBcode"><br>// ProductLookupEdit<br> this.ProductLookupEdit.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo&#091;&#093; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; new LookUpColumnInfo("DefaultSort", "DefaultSort", 74, ColumnSortOrder.Ascending),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("ProductType.ProductTypeName", "Product Type", 67),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("ProductName", "Product Name", 70),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new LookUpColumnInfo("Event.EventName", "Related Event", 34)<br>});<br>this.ProductLookupEdit.Properties.DataSource = this.bsProducts;<br>this.ProductLookupEdit.Properties.DisplayMember = "ProductName";<br>this.ProductLookupEdit.Properties.NullText = "&#091;Choose a Product&#093;";<br>this.ProductLookupEdit.Properties.ValueMember = "ProductGUID";<br></pre></td></tr></table><br><br>Is there some way I can get the nested properties to show up? <br><br>Thanks!<br><br>Heather<br>]]>
   </description>
   <pubDate>Sat, 04 Oct 2008 14:10:43 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=3463#3463</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : Darren,  One of the Tools for...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=2986#2986</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=23" rel="nofollow">davidklitzke</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 25-May-2008 at 9:44am<br /><br />Darren,<DIV>&nbsp;</DIV><DIV>One of the Tools for DExperience 8.1 is called "Project Converter".&nbsp; It will allow you to convert projects built with older versions of DevEX to the 8.1 version.</DIV><DIV>&nbsp;</DIV><DIV>David</DIV>]]>
   </description>
   <pubDate>Sun, 25 May 2008 09:44:41 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=2986#2986</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : I need to know how to display...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=2976#2976</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=300" rel="nofollow">pucsoftware</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 22-May-2008 at 2:14pm<br /><br />I need to know how to display multiple columns for a field in a DevExpress&nbsp;lookupEdit. This example is older and won't work with the latest VS.NET and the DevExpress 8.1 components&nbsp;installed. Or if you have instructions on how to do this that would be good enough. Also, do&nbsp; you know if the GridLookupEdit is supported now? Thanks for your help.<DIV>&nbsp;</DIV><DIV>Darren</DIV>]]>
   </description>
   <pubDate>Thu, 22 May 2008 14:14:21 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=2976#2976</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : The GridLookUpEdit is not a DevEx...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=1938#1938</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=23" rel="nofollow">davidklitzke</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 14-Nov-2007 at 3:30pm<br /><br />The GridLookUpEdit is not a DevEx control that we currently support. We would need to write a DataBinder for it.&nbsp; There is an existing Feature Enhancement Request for this functionality.]]>
   </description>
   <pubDate>Wed, 14 Nov 2007 15:30:58 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=1938#1938</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : Hi, Do you have a VB code sample...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=1933#1933</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=188" rel="nofollow">JeeZ</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 14-Nov-2007 at 2:15pm<br /><br />Hi,<DIV>Do you have a VB code sample for the GridLookupEdit ? I'm able to use the LookupEdit, but I had no luck with the GridLookupEdit. Thanks!</DIV>]]>
   </description>
   <pubDate>Wed, 14 Nov 2007 14:15:32 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=1933#1933</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : I&#8217;ve attached a code sample for...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=575#575</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=21" rel="nofollow">IdeaBlade</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 16-Jul-2007 at 10:35am<br /><br /><DIV><SPAN ="188054018-16042007"><FONT face=Arial color=navy size=2><SPAN style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial">I’ve attached a code sample for multiple columns in a LookUpEdit.</SPAN></FONT></SPAN></DIV><DIV><SPAN ="188054018-16042007"><FONT face=Arial color=navy size=2><SPAN style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial"></SPAN></FONT></SPAN>&nbsp;</DIV><DIV><SPAN ="188054018-16042007"><FONT face=Arial color=navy size=2><SPAN style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial"><a href="http://www.ideablade.com/forum/uploads/20070716_161636_Case455_SimpleA.zip" target="_blank">uploads/20070716_161636_Case455_SimpleA.zip</A></SPAN></FONT></SPAN></DIV><DIV>&nbsp;</DIV><span style="font-size:10px"><br /><br />Edited by IdeaBlade - 16-Jul-2007 at 1:16pm</span>]]>
   </description>
   <pubDate>Mon, 16 Jul 2007 10:35:46 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=575#575</guid>
  </item> 
  <item>
   <title>How to display multiple columns in a LookupEdit : When attempting to use the GridLookupEdit...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=574#574</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=20" rel="nofollow">Customer</a><br /><strong>Subject:</strong> 259<br /><strong>Posted:</strong> 16-Jul-2007 at 10:32am<br /><br /><SPAN ="188054018-16042007"><FONT face=Arial size=2>When attempting to use the GridLookupEdit / LookupEdit controls from DevExpress, one of the most desireable properties&nbsp;is the ability to display multiple columns in the Popup list of the controls(with their flavours). Is this functionality supported by the xtraGridBindingManager / ControlBindingManager ?</FONT></SPAN> <span style="font-size:10px"><br /><br />Edited by IdeaBlade - 16-Jul-2007 at 10:34am</span>]]>
   </description>
   <pubDate>Mon, 16 Jul 2007 10:32:45 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=259&amp;PID=574#574</guid>
  </item> 
 </channel>
</rss>