iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
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
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
Hi,
Please try to use this new license manager. We have fixed the issue in WebUIStudio2010 installer.
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.
That's not the proper way to do databinding. Please see my attachment sample.
Which one is not working? The fullpostback should be not persisted anymore. Please see my attached sample.
It should be .757 build version. You can try to download the hotfixes from this thread.
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
Public Class webCombo Inherits System.Web.UI.Page
I can replicate your issue. I will report this to our developer teams.
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.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname