User Profile & Activity

Dicky S Support
Page
of 8

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

Posted: October 8, 2009 11:46 PM

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.

Best Regards,

Dicky

Posted: October 6, 2009 11:33 PM

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.

Dicky

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.


Best Regards,

Dicky

Posted: October 6, 2009 4:31 AM

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.


Best Regards,

Dicky

Hi George,

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.


Best Regards,

Dicky

Posted: October 5, 2009 11:04 PM

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.

Best Regards,

Dicky

Posted: October 2, 2009 6:32 AM

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?


Best Regards,

Dicky

Posted: October 2, 2009 5:49 AM

Hi Jonathan,

It should be released on next released hotfix. Please stay tuned on our website.


Best Regards,

Dicky

Posted: October 1, 2009 4:42 AM

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.

Best Regards,

Dicky

All times are GMT -5. The time now is 12:38 AM.
Previous Next