User Profile & Activity

Handy Surya Support
Page
of 223
Posted: December 23, 2010 11:08 AM

Hello Rajashekar,

Unfortunately, this is not a bug. It is the issue in IE8 itself. When you turn it into IE8, it will automatically use XHTML doctyle. To avoid this issue, you also need to use XHTML doctype in your aspx.

<!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">

Regards,

Handy

Posted: December 23, 2010 10:36 AM

Hello,

After discussed with our developer teams, they think that it is not possible. The old product is really outdated. Some of them does not support modern architecture yet.

Regards,
Handy

Posted: December 23, 2010 9:56 AM

Hi,

Please try to use this new license manager. We have fixed the issue in WebUIStudio2010 installer.

Regards,
Handy

Hello Fung,

I did not understand about "it won't be able to retieve data". Shouldn't when you type in WebCombo pr show the dropdown, it will trigger IntializeDataSource event?

Unfortunately, you could not place Not IsPostBack condition, because WebCombo must be always created. Otherwise, it's gone.

Regards,
Handy

Posted: December 23, 2010 9:28 AM

Hello,

That's not the proper way to do databinding. Please see my attachment sample. 

Regards,
Handy

Hello,

Which one is not working? The fullpostback should be not persisted anymore. Please see my attached sample.

Regards,
Handy

Hi,

It should be .757 build version. You can try to download the hotfixes from this thread.

Regards,
Handy

Hello,

Based On my investigation, this is not cause by PlaceHolder. Event a small div can also replicate your issue. Some of your approaches is not correct and not postback condition in Page_Load also cause this issue. 

Please see my approaches in below. Hope this helps.

Imports System
Imports System.Data
Imports System.Configuration
Imports System.Collections
Imports System.Web
Imports System.Web.Security
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Web.UI.WebControls.WebParts
Imports System.Web.UI.HtmlControls
Imports ISNet.WebUI.WebCombo
Public Class webCombo
    Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load PlaceHolder1.Controls.Add(createCBO) End Sub Private Function GetData2() As DataTable Dim dt As New DataTable With dt.Columns .Add("Text") .Add("Value") .Add("Display") End With For i As Integer = 1 To 250 With dt.Rows .Add(i & i, i, i) End With Next Return dt End Function Private Function createCBO() As WebCombo Dim cboWebCombo As New WebCombo Dim dt As New DataTable Dim sbBindText As New System.Text.StringBuilder AddHandler cboWebCombo.InitializeDataSource, AddressOf cboWebCombo_InitializeDataSource With cboWebCombo .ID = "cbo" .UseDefaultStyle = True .Enabled = True .Latency = 250 .AllowAutoPostback = False End With Return cboWebCombo End Function Protected Sub cboWebCombo_InitializeDataSource(ByVal sender As Object, ByVal e As ISNet.WebUI.WebCombo.DataSourceEventArgs) Dim cboWebCombo As WebCombo = CType(sender, WebCombo) e.DataSource = GetData2() cboWebCombo.DataValueField = "Text" cboWebCombo.DataTextField = "Value" End Sub End Class

Regards,
Handy

Posted: December 21, 2010 1:41 PM

Hi,

I can replicate your issue. I will report this to our developer teams.

Regards,
Handy

Posted: December 16, 2010 10:12 PM

Hello Vince,

I am sorry for the late response. So you mean that you want to substitute the behaviour of "Down" keyboard with "PageDown" keyboard? I am afraid this could not be done. This is our default behaviour, Interface and the interaction.
If we change it, some users would not like it or confuse.
If you want, you can post this as feature request from our DeveloperNetwork>>CommunityCenter>>ProductFeedback. There is no guarantee that this would be implemented. But our developer teams would see and consider it first.

Regards,
Handy 

All times are GMT -5. The time now is 12:47 PM.
Previous Next