Options

How to use Microsoft.Navision.EmployeePortal.WebPartLibrary?

KSontKSont Member Posts: 2
edited 2009-10-17 in Navision e-Commerce
How to use Microsoft.Navision.EmployeePortal.WebPartLibrary?

When I compile the following code:
namespace MyEmployeePortal
{
  public partial class MyCombiPart : Microsoft.Navision.EmployeePortal.WebPartLibrary.BasePart
  {

    public override void Action_ConfigurationUpdated()
    {
      throw new Exception("The method or operation is not implemented.");
    }

  }
}


The following errors are shown:
'MyCombiPart' does not implement inherited abstract member 'Microsoft.Navision.EmployeePortal.WebPartLibrary.BasePart.Action_Command(object, System.Web.UI.WebControls.CommandEventArgs)

'MyCombiPart' does not implement inherited abstract member 'Microsoft.Navision.EmployeePortal.WebPartLibrary.BasePart.Action_SortCommand(object, System.Web.UI.WebControls.CommandEventArgs)'

'MyCombiPart' does not implement inherited abstract member 'Microsoft.Navision.EmployeePortal.WebPartLibrary.BasePart.Action_PageCommand(object, System.Web.UI.WebControls.CommandEventArgs)'

'MyCombiPart' does not implement inherited abstract member 'Microsoft.Navision.EmployeePortal.WebPartLibrary.BasePart.Action_PageCommandSelect(object, System.EventArgs)'

How to describe these functions?

Comments

  • Options
    waynenlwaynenl Member Posts: 39
    Maybe you must pre-define all the action methods
Sign In or Register to comment.