This is a migrated thread and some comments may be shown as answers.

I'm not able to display the current records in Radstatusstrip

7 Answers 86 Views
StatusStrip
This is a migrated thread and some comments may be shown as answers.
Dev
Top achievements
Rank 1
Veteran
Dev asked on 29 Sep 2018, 11:25 AM
In my existing VB application, the current records are displaying in the status bar while it's binding the grid.
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

Sort by
0
Dimitar
Telerik team
answered on 01 Oct 2018, 09:05 AM
Hello Rick,

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
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Dev
Top achievements
Rank 1
Veteran
answered on 24 Oct 2018, 01:34 PM
I’ve attached the sample code. 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.
0
Dev
Top achievements
Rank 1
Veteran
answered on 24 Oct 2018, 01:50 PM

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.

0
Dimitar
Telerik team
answered on 25 Oct 2018, 07:58 AM
Hi Rick,

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
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Dev
Top achievements
Rank 1
Veteran
answered on 25 Oct 2018, 12:31 PM

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

0
Dimitar
Telerik team
answered on 26 Oct 2018, 07:39 AM
Hi Rick,

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
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Dev
Top achievements
Rank 1
Veteran
answered on 26 Oct 2018, 01:36 PM
Hi Dimitar
  Thank you for your timely help. it's working fine.
Tags
StatusStrip
Asked by
Dev
Top achievements
Rank 1
Veteran
Answers by
Dimitar
Telerik team
Dev
Top achievements
Rank 1
Veteran
Share this question
or