User Profile & Activity

John Thompson Member
Posted: July 16, 2010 10:17 AM

Thanks alot, that is exactly what I needed to know.  Works great!

Posted: October 27, 2009 6:32 AM

Please let me know as soon as this bug is fixed or there is a work around to the problem, as this function is critical to the application I am developing.

Thanks Again.

Posted: October 26, 2009 10:03 AM

Thank you for your assistance.  The example you created works fine with using OnInitializeDataSource, however if you follow the Walkthrough: Binding WebCombo to LinqDataSource, it does not work.  Also the live example on the Intersoft website(High Performance Data Retrieval) does not work using the products webcombo.  It does not find chef anton's.  Using the OnInitializeDataSource as in your example is considerably slower with a large database.

Posted: October 15, 2009 6:29 AM

Thanks Handy,

I was just needing a way to make it works, and that works great.

 

Thanks for your help,

John

Posted: October 14, 2009 6:07 AM

I get the same problem with Intersoft WebTab with the WebCombo bound to a SqlDataSource and value assigned at page load. 

 With the WebTab the WebCombo appears to have rendered correctly when the tab is selected that has the WebCombo, however one cannot click in the text area and must use the dropdown button.  Once the button is clicked, the button is covered by the text area.

 

 Attached is my code.

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebComboTest2._Default" %>

<%@ Register Assembly="ISNet.WebUI.WebCombo" Namespace="ISNet.WebUI.WebCombo" TagPrefix="ISWebCombo" %>

<%@ Register assembly="ISNet.WebUI.WebDesktop" namespace="ISNet.WebUI.WebDesktop" tagprefix="ISWebDesktop" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <ISWebDesktop:WebTab ID="WebTab1" runat="server" Height="300px" Width="500px">
<FrameStyle Overflow="Hidden" OverflowY="Hidden" OverflowX="Hidden"></FrameStyle>

<ContainerStyle Overflow="Auto" OverflowY="Auto" OverflowX="Auto" BackColor="WhiteSmoke" BorderColor="Navy" BorderStyle="Solid" BorderWidth="1px" Height="100%" Width="100%">
<Padding Top="5px" Left="5px" Right="5px" Bottom="5px"></Padding>
</ContainerStyle>

<RoundCornerSettings TopBorderColor="230, 139, 44" FillerBorderColor="255, 199, 60"></RoundCornerSettings>

<DisabledStyle ForeColor="Gray"></DisabledStyle>
            <tabpages>
                <ISWebDesktop:WebTabItem Text="Tab 1">
                </ISWebDesktop:WebTabItem>
                <ISWebDesktop:WebTabItem Name="Tab2" Text="Tab 2">
                <PageTemplate>
                    <ISWebCombo:WebCombo ID="WebCombo1" runat="server" UseDefaultStyle="True" 
                        DataSourceID="SqlDataSource1" DataTextField="NAME" DataValueField="PIN_NUM" 
                        Height="20px" Width="200px">
                    </ISWebCombo:WebCombo>
                
                
                    <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
                        ConnectionString="<%$ ConnectionStrings:T3000ConnectionString %>" 
                        SelectCommand="SELECT * FROM [LISTING]"></asp:SqlDataSource>
                
                
                </PageTemplate>
                
                </ISWebDesktop:WebTabItem>
                <ISWebDesktop:WebTabItem Name="Tab3" Text="Tab 3">
                </ISWebDesktop:WebTabItem>
            </tabpages>

<TabItemStyle>
<Normal Cursor="Hand" BackColor="Gainsboro" BorderColor="Gray" BorderStyle="Solid" 
        BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt" Height="100%" 
        Width="100%">
<Padding Top="2px" Left="10px" Right="10px" Bottom="0px"></Padding>
</Normal>

<Over BaseStyle="Normal" BackColor="WhiteSmoke"></Over>

<Active GradientType="Vertical" BackColor2="245, 245, 245" BaseStyle="Normal" BackColor="White" BorderColor="Navy" BorderStyle="Solid" BorderWidth="1px"></Active>
</TabItemStyle>
        </ISWebDesktop:WebTab>
        <br />
        <br />
    
    </div>
    </form>
</body>
</html>

And in Code Behind

 

Partial Public Class _Default
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Me.WebCombo1.Value = 700252
    End Sub


End Class

 

Posted: October 13, 2009 6:30 AM

At least I know I am not losing my mind.  Any idea on how long fixes like this take?  Weeks??? Months???  I need to decide on a direction for this project.

All times are GMT -5. The time now is 1:46 AM.
Previous Next