Intersoft WebGrid Documentation
LoadChildTable Field
See Also  Send Feedback
ISNet.WebUI.WebGrid Namespace > PostBackAction Class : LoadChildTable Field






Indicates loading child table action is being executed in FlyPostBack mode.

Syntax

Visual Basic (Declaration) 
Public Const LoadChildTable As String
Visual Basic (Usage)Copy Code
Dim value As String
 
value = PostBackAction.LoadChildTable
C# 
public const string LoadChildTable
Delphi 
public field LoadChildTable: String; Const 
JScript 
public constvar LoadChildTable : String;
Managed Extensions for C++ 
public: const string* LoadChildTable
C++/CLI 
public:
const String^ LoadChildTable

Example

The following example shows you how to display a message box when users load child table in the FlyPostBack mode.

[C#]

private void WebGrid1_InitializePostBack(object sender, ISNet.WebUI.WebGrid.PostbackEventArgs e)
{
    if (e.Action == PostBackAction.LoadChildTable)
    {
       WebGrid1.ClientAction.Alert("ChildTable Loaded")

    }

}

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

©2012 Intersoft Solutions Corp. All Rights Reserved.