Articles in this section
Category / Section

How to get member node's checked status while loading element editor?

1 min read

You can get the member nodes checked status while loading member/element editor by using the following code examples.

C#

protected void Page_Load(object sender, EventArgs e)
{
    this.OlapClient1.MemberEditorLoading += OlapClient1_MemberEditorLoading;             
}
void OlapClient1_MemberEditorLoading(object sender, MemberEditorLoadingEventArgs e)
{
    var nodeState = e.Node.Checked; //Use this code to get the checked status of each node. 
}

 

VB

Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
 AddHandler Me.OlapClient1.MemberEditorLoading, AddressOf OlapClient1_MemberEditorLoading
End Sub
Private Sub OlapClient1_MemberEditorLoading(ByVal sender As Object, ByVal e As MemberEditorLoadingEventArgs)
 Dim nodeState = e.Node.Checked 'Use this code to get the checked status of each node.
End Sub

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied