In Radstatusstrip when I tried to bind the values, I'm not able to display the current records in Radstatusstrip. Is there any solution to get the values displayed in Radstatusstrip
Video reference attached for your reference
Video Link: https://tamilarasan-gmail.tinytake.com/sf/Mjk1NzgzNl84ODczNzE1
7 Answers, 1 is accepted
In general, I believe that this should work the same way with our and the standard control. Could you please share the code that you are using to update the text. Are you using any multithreading in this case? Having the code will allow me to create a test project and reproduce the case locally which will allow me to determine why the text is not updated.
Thank you in advance for your patience and cooperation.
Regards,
Dimitar
Progress Telerik
Hi Dimitar
Thank you. I’ve mentioned the sample code below. we are following the same process in our application. The data are not getting bind concurrently in the status strip. Please check & do the needful.
Private Sub RdbtnRefresh_Click(sender As Object, e As EventArgs) Handles RdbtnRefresh.Click
Dim Table1 As New DataTable
Table1.Columns.Add("Id")
Table1.Columns.Add("Date")
For i = 0 To 30000
Table1.Rows.Add(i)(0) = i + 1
Table1.Rows(i)(1) = DateTime.Now
rdstatus1.Text = Table1.Rows(i)!Date
Next
rdstatusgrid.DataSource = Table1
End Sub
Please skip the above Reply. the file attachment is not uploaded correctly.
I have tested this and I am getting similar results with both the standard and our status trip. I have attached my test project. Could you please check it and let me know the results on your side?
I am looking forward to your reply.
Regards,
Dimitar
Progress Telerik
Hi Dimitar,
Thank you. I tested the code but only the last record is binding on the status strip.
But my requirement is, I need all the records to bind one by one & it should be displayed on the status strip. Please check & do the needful.
Video reference attached for your reference
Video Link: https://tamilarasan-gmail.tinytake.com/sf/Mjk1NzgzNl84ODczNzE1
You need to force the layout. You can use the following methods for this:
radStatusStrip1.LayoutManager.UpdateLayout();
radStatusStrip1.Refresh();
Let me know how this works for you.
Regards,
Dimitar
Progress Telerik
Thank you for your timely help. it's working fine.