﻿<?xml version="1.0" encoding="utf-8"?><rss 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:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - ComboBox dropdown positioning under Silverlight</title><link>http://www.intersoftsolutions.com/Community/ClientUI/ComboBox-dropdown-positioning-under-Silverlight/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>ComboBox dropdown positioning under Silverlight</title><link>http://www.intersoftsolutions.com/Community/ClientUI/ComboBox-dropdown-positioning-under-Silverlight/</link><pubDate>Mon, 07 Nov 2011 19:56:59 GMT</pubDate><dc:creator>yudi</dc:creator><category>ComboBox Silverlight Dropdown</category><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;Thank you for the valuable feedback.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;The development will ensure that this problem will be properly addressed on the upcoming release of Intersoft WebUI Studio 2011 R2. Should I hear any news from the team regarding this, I will let you know.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;&lt;strong&gt;Edited on December 26, 2011 11:03 PM&lt;br /&gt;Reason: add/update work item information&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;This zoom level problem is submitted to ClientUI development team under work item #1104.&lt;br /&gt;I will keep you updated with any news I heard from the team regarding work item #1104.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>ComboBox dropdown positioning under Silverlight</title><link>http://www.intersoftsolutions.com/Community/ClientUI/ComboBox-dropdown-positioning-under-Silverlight/</link><pubDate>Sat, 05 Nov 2011 12:28:21 GMT</pubDate><dc:creator>terrell.jm@gmail.com</dc:creator><category>ComboBox Silverlight Dropdown</category><description>&lt;p&gt;Hi, I'm evaluating the Client UI Silverlight version on a Windows 7 machine using IE9. I have attached an image showing the dropdown positioning far to the left of the control. This appears to happen when columns to the left have a variable size (i.e. width of star). Code for the example is included below.  Also if you remove the last rowdefinition the combobox height resizes whenever it is clicked.  Is this an issue with the software or am I missing a setting.  Any assistance appreciated. Jonathan&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;P.S. This only occurs when the browser zoom level is other than 100% and I am using a 120 dpi monitor.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;&amp;lt;UserControl x:Class="SilverlightApplication11.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&lt;/p&gt;
&lt;p&gt;    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&lt;/p&gt;
&lt;p&gt;    xmlns:Intersoft="clr-namespace:Intersoft.Client.UI.Aqua.UXCollection;assembly=Intersoft.Client.UI.Aqua.UXCollection"&amp;gt;&lt;/p&gt;
&lt;p&gt;  &amp;lt;Grid x:Name="LayoutRoot"&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;Grid.ColumnDefinitions&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ColumnDefinition Width="250" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ColumnDefinition Width="5" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ColumnDefinition Width="*" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ColumnDefinition Width="5" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ColumnDefinition Width="250" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/Grid.ColumnDefinitions&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;Grid.RowDefinitions&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;RowDefinition Height="Auto" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;RowDefinition Height="5" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;RowDefinition Height="Auto" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;RowDefinition Height="*" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/Grid.RowDefinitions&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;ComboBox Grid.Column="0" Grid.Row="0" Width="150"&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Andrew" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Angela" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Angeline" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="David" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Hill" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Karen" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Kory" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Michelle" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/ComboBox&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;Intersoft:UXComboBox Grid.Column="0" Grid.Row="2" Width="150"&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Andrew" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Angela" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Angeline" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="David" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Hill" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Karen" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Kory" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Michelle" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/Intersoft:UXComboBox&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;ComboBox Grid.Column="2" Grid.Row="0" Width="150"&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Andrew" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Angela" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Angeline" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="David" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Hill" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Karen" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Kory" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Michelle" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/ComboBox&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;Intersoft:UXComboBox Grid.Column="2" Grid.Row="2" Width="150"&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Andrew" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Angela" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Angeline" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="David" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Hill" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Karen" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Kory" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Michelle" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/Intersoft:UXComboBox&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;ComboBox Grid.Column="4" Grid.Row="0" Width="150"&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Andrew" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Angela" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Angeline" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="David" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Hill" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Karen" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Kory" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;ComboBoxItem Content="Michelle" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/ComboBox&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;Intersoft:UXComboBox Grid.Column="4" Grid.Row="2" Width="150"&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Andrew" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Angela" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Angeline" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="David" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Hill" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Karen" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Kory" /&amp;gt;&lt;/p&gt;
&lt;p&gt;      &amp;lt;Intersoft:UXComboBoxItem Content="Michelle" /&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;/Intersoft:UXComboBox&amp;gt;&lt;/p&gt;
&lt;p&gt;  &amp;lt;/Grid&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/UserControl&amp;gt;&lt;/p&gt;</description></item></channel></rss>