Hi,
In my page, I have a button, a textbox, a CallbackPanel, a ASPxGridView, I can input the filter in the textbox then press the button to get the requited data
by CallbackPanle using the performCallback method, and show the data in the ASPxGridView.
I want to implement another feature that display the count of the GridView in the IE Status bar, I implement it using this code as below:
string statusBarText = "row(s): " + ASPxGridView.Rows.Count;
ClientScript.RegisterStartupScript(GetType(), "SetStatusBarText", "window.status='"+ statusBarText +"';", true);
But, I find the page output the same count always, in this case, whatever I change the filter in the textbox, then I press the button to get new data, the count in the
status bar is never been changed.
I want to know how can I output the latest value in callback method.
Thks!