﻿<?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 - WebCombo - Webcombo disappears in WebDialogBox</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Webcombo-disappears-in-WebDialogBox/</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>Webcombo disappears in WebDialogBox</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Webcombo-disappears-in-WebDialogBox/</link><pubDate>Tue, 12 Nov 2013 22:04:27 GMT</pubDate><dc:creator>Hans</dc:creator><category>WebCombo</category><category>WebdialogBox</category><description>Hello,&lt;br /&gt;&lt;br /&gt;I am sorry for the late response.&lt;br /&gt;&lt;br /&gt;Please kindly try to use DoResize() WebCombo’s method in OnLostFocus client side.&lt;br /&gt;Here’s the example snippet code how-to implement DoResize() method:&lt;br /&gt;&lt;pre&gt;function WebCombo1_OnLostFocus(controlId){
   var WebCombo1 = ISGetObject(controlId);
   WebCombo1.DoResize(true);
   return true;
}&lt;/pre&gt;Hope this helps.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Hans.&lt;br /&gt;&lt;br /&gt;
</description></item><item><title>Webcombo disappears in WebDialogBox</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Webcombo-disappears-in-WebDialogBox/</link><pubDate>Thu, 07 Nov 2013 18:59:49 GMT</pubDate><dc:creator>luwen</dc:creator><category>WebCombo</category><category>WebdialogBox</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I put a webcombo inside a WebDialogBox. The webCombo is populated from JSON on page load. It looks fine. But when the focus is moved to the buttons on WebDialogBox, the Webcombo disappears, and can not show again. How to avoid that? Here is the code:&lt;/p&gt;&lt;pre&gt;&amp;lt;ISWebDesktop:WebDialogBox ID="dlgLookup" runat="server" Text="Lookup TaxCode" Width="400px" Height="150px" DialogBoxImage="None"&amp;gt;
&amp;lt;ContentTemplate&amp;gt;
       &amp;lt;ISWebCombo:WebCombo ID="comboLookup" runat="server" BindingOperationMode="ClientBinding" DataTextField="Value" DataValueField="Key" ViewStateStorage="None" Width="360px" UseDefaultStyle="True"&amp;gt;    
       &amp;lt;Columns&amp;gt;
       		&amp;lt;ISWebCombo:WebComboColumn Name="text" BaseFieldName="Value" HeaderText="Item Text" DataType="System.String"/&amp;gt;
       &amp;lt;/Columns&amp;gt;                                      
       &amp;lt;LayoutSettings EntryMode="AutoComplete" StatusBoxVisible="false" ComboMode="SingleColumn"&amp;gt;
       &amp;lt;/LayoutSettings&amp;gt;  
       &amp;lt;FlyPostBackSettings PostHiddenFields="true" PostInputControls="true" /&amp;gt;
       &amp;lt;ClientBindingSettings DataSourceType="ClientDataSource"/&amp;gt;                            
       &amp;lt;/ISWebCombo:WebCombo&amp;gt;
&amp;lt;/ContentTemplate&amp;gt;
&amp;lt;WindowSettings AllowResize="Yes"&amp;gt;
            &amp;lt;CommandButtonStyle&amp;gt;
                &amp;lt;Active CssClass="clsSmallButton" Font-Bold="true" /&amp;gt;
                &amp;lt;Over CssClass="clsSmallButton" Font-Bold="true" /&amp;gt;
                &amp;lt;Normal CssClass="clsSmallButton" Font-Bold="false"&amp;gt;
                &amp;lt;/Normal&amp;gt;
            &amp;lt;/CommandButtonStyle&amp;gt;
            &amp;lt;ContainerStyle CssClass="clsBgTable"&amp;gt;
                &amp;lt;Padding Bottom="2px" Left="2px" Right="2px" Top="2px" /&amp;gt;
            &amp;lt;/ContainerStyle&amp;gt;
            &amp;lt;WindowStyle&amp;gt;
                &amp;lt;Active BaseStyle="Normal" BorderColor="Gray" /&amp;gt;
                &amp;lt;Normal BackColor="White" BorderColor="Silver" BorderStyle="Solid" BorderWidth="1px"
                    Font-Names="Tahoma" Font-Size="8pt"&amp;gt;
                &amp;lt;/Normal&amp;gt;
            &amp;lt;/WindowStyle&amp;gt;
            &amp;lt;CaptionStyle&amp;gt;
                &amp;lt;Active BackColor="#766C62" BaseStyle="Normal" /&amp;gt;
                &amp;lt;Normal BackColor="Gray" Font-Bold="True" Font-Names="Tahoma" Font-Size="10pt" ForeColor="White"&amp;gt;
                    &amp;lt;Padding Bottom="2px" Left="2px" Right="2px" Top="2px" /&amp;gt;
                &amp;lt;/Normal&amp;gt;
            &amp;lt;/CaptionStyle&amp;gt;
            &amp;lt;CaptionButtonStyle&amp;gt;
                &amp;lt;Active BaseStyle="Normal"&amp;gt;
                    &amp;lt;BorderSettings&amp;gt;
                        &amp;lt;Top Color="Gray" /&amp;gt;
                        &amp;lt;Left Color="Gray" /&amp;gt;
                    &amp;lt;/BorderSettings&amp;gt;
                &amp;lt;/Active&amp;gt;
                &amp;lt;Over BaseStyle="Normal"&amp;gt;
                    &amp;lt;BorderSettings&amp;gt;
                        &amp;lt;Bottom Color="Gray" /&amp;gt;
                        &amp;lt;Right Color="Gray" /&amp;gt;
                    &amp;lt;/BorderSettings&amp;gt;
                &amp;lt;/Over&amp;gt;
                &amp;lt;Normal BorderColor="White" BorderStyle="Solid" BorderWidth="1px" Height="17px" Overflow="Hidden"
                    OverflowX="Hidden" OverflowY="Hidden"&amp;gt;
                &amp;lt;/Normal&amp;gt;
            &amp;lt;/CaptionButtonStyle&amp;gt;
        &amp;lt;/WindowSettings&amp;gt;
        &amp;lt;CommandButtons&amp;gt;
            &amp;lt;ISWebDesktop:WebDialogBoxButton Name="askOK" Text="Submit" Type="OK" /&amp;gt;
            &amp;lt;ISWebDesktop:WebDialogBoxButton Name="askCancel" Text="Cancel" Type="Cancel" /&amp;gt;
        &amp;lt;/CommandButtons&amp;gt;
        &amp;lt;ClientSideEvents OnButtonClicked="dlgLookup_ButtonClicked" /&amp;gt;
    &amp;lt;/ISWebDesktop:WebDialogBox&amp;gt;&lt;/pre&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Luwen&lt;/p&gt;</description></item></channel></rss>