EntreeServer.Module.EntreeClickActionObject
This object is used to apply actions to items when a user clicks.  EntreeClickActionObjects can be applied to ListItems as well as ActionItems.  The properties that you set will then be available in the EntreeScopeObject when the item is clicked.
 
Properties
  • ConfirmActionPrompt
    The optional confirmation text to use to display to the user when they click the button (ie: "Are you Sure?")
  • FormSubmit
    Specifies if the click should submit form items (dropdowns, text boxes etc...)
  • SlideDirection
    On jQuery-supported browsers, defines which direction the screen should slide.
  • ForcePostback
    Specifies if the click should force a postback on AJAX enabled browsers.  The use for this primarily relates to the use of <input type='file'> fields where a postback is required to get the file.
Example
 

EntreeClickActionObject cla = output.CreateClickAction();

cla["pid"] = i.ToString();

cla["screen"] = "page_stats";

My_List_Item.SetClickAction(cla);