Gets or sets the full refresh action to the grid. This method will refresh the whole grid, including the grid structure.
Syntax
Visual Basic (Declaration) | |
---|
Public Sub RefreshAll() |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As ClientSideAction
instance.RefreshAll() |
C# | |
---|
public void RefreshAll() |
Delphi | |
---|
public procedure RefreshAll(); |
JScript | |
---|
public function RefreshAll(); |
Managed Extensions for C++ | |
---|
public: void RefreshAll(); |
C++/CLI | |
---|
public:
void RefreshAll(); |
Example
C# | Copy Code |
---|
private void WebGrid1_InitializePostBack(object sender,
ISNet.WebUI.WebGrid.PostbackEventArgs e)
{
if (e.Action == PostBackAction.Custom)
{
// perform business logic here
WebGrid1.ClientAction.RefreshAll();
}
} |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also