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 Dasha,
I'm able to repro the issue here, but I suggest you to use double quotes (") instead of single quote ('). So you can try to change <a href='http://www.google.com'>Google</a> with <a href="http://www.google.com">Google</a>.
I have tried it, and it is work.
Best Regards,
Dicky
Hi David,
Unfortunatelly calenders is built-in feature in with WebScheduler so you can't use it separately. You can use your trick if you want, since we don't provide that feature in WebScheduler.
Hi Vince,
You can add filter column on server side using onPrepareDataBinding event. Here the code snippet:
if (!IsPostBack)
{
WebGridFilter filter1 = new WebGridFilter("City", ColumnFilterType.Contain, "London");
WebGrid1.RootTable.FilteredColumns.Add(filter1);
}
Hope this helps.
Hi George,
The hotfix will available in next released hotfix [this month hotfix]. You can find it at least in two days again on UpdateManager, we are working on it now.
PS: I accidentally mark this thread as an answer, but the next hotfix should be solved this issue, since we have checked it before.
Hi Pierre,
It should be no problem to create WebGrid Columns programmatically. I have checked your code and found some uncommon ways to bind the grid and generate WebGrid Column programmatically.
There are 2 important information that you need to aware:1. You need to use OnInitialize_DataSource event to bind the data to WebGrid.2. You need to use OnPrepareDataBinding event to define WebGrid Column programatically.
So based on your sample. You can try these ways:
1. Change your method named BindDataSet2Grid to return DataSet. So in that way you can bind your data OnInitialize_DataSource event using this way:
Private Sub wgBusinessUnits_InitializeDataSource(ByVal sender As Object, ByVal e As ISNet.WebUI.WebGrid.DataSourceEventArgs) Handles wgBusinessUnits.InitializeDataSource e.DataSource = BindDataSet2Grid() End Sub
2. You need to call SetGridColumns() method onPrepareDataBinding event instead of OnInitializeLayout event. Here the sample code:
Protected Sub wgBusinessUnits_PrepareDataBinding(ByVal sender As Object, ByVal e As ISNet.WebUI.WebGrid.DataSourceEventArgs) Handles WG1.PrepareDataBinding If Not Page.IsPostBack Then SetGridColumns(wgBusinessUnits) End If End Sub
Use an event not properly sometimes can break the life cycle process, I'm affraid this is what happen on your scenario. Hope this can help you to solve the issue.
I just got response from our dev team regarding this issue. They have fixed the issue, you should able to get the hotfix in the next released build.
PS: You will need to apply WebUI framework to get the issue solved.
Hi Eric,
Just want to inform you if we just handled two issues reported by you regarding UI issues in community page with IE6 and evenmore we are now giving a warning message to IE6 users which should give an awareness to them if browse our website with IE6 will cause some UI issues [because of IE6 limitation].
Please feel free if you have another feedback regarding our website.
Hi Micahel,
Okay I have discussed with my colleague who handle that issue before in TDN. Now I understand the issue, but in WebCombo LinkSettings there is property named FilterDataMember. You should able to use that property to fulfill your scenario. Have you that property set in your sample? If this can't work could you send your simple sample to me?
Hi Jonathan,
It should be released on next released hotfix. Please stay tuned on our website.
Hi Dasha,
Could you help us to determine which Sharepoint javascript function that won't work when using WebScheduler? You can check Error Console in Firefox (CTRL+J) that should list all javascript errors which ocurrs in that time.
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