DataRepeater.Datasource not work with Wisej version 4.0.3

Answered
0
0

Hello,

I have a DataRepeater and as DataSource I have a list of objects using BindingList, but I noticed that since version 4.0.3 the data is no longer displayed.

Is there a workaround to temporarily fix the problem in the meantime?

I tried with the AddNew method, but then when I try to delete them, the count does not reset, so it goes into exception.

https://ncweb.filemail.com/d/ohankdvzyacqgxa

Thank you for your support.

  • You must to post comments
Best Answer
0
0

This is fixed internally and the fix will be deployed with the next release.
For now, here is a workaround:
Me.DataRepeater1.DataSource = Nothing
Me.DataRepeater1.DataSource = New BindingList(Of SampleData)(lstSampleData)

  • You must to post comments
0
0

I was able to reproduce the problem with the example I am attaching.

The data is loaded the first time, then if I delete it and empty the entire data source and try to reload the datarepeater, the data is no longer loaded.

  • Julie(ITG)
    I can reproduce with your sample, thanks! We’ll look into this.
  • You must to post comments
0
0

I tried and I cannot reproduce. See attached sample of a DataRepeater with databinding that works fine in 4.0.3.

Can you please wrap up a small sample that demonstrates the issue? Delete the bin and obj folders before posting.

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.