Dynamicweb 8 Documentation
BeforeSort Field
Example 

Event occurs before products sorting.
Syntax
'Declaration
 
Public Const BeforeSort As String
public const string BeforeSort
Example
Overriding the device detection of DynamicwebOverriding the device detection of Dynamicweb
using Dynamicweb;

namespace Dynamicweb.Examples.CSharp.Notifications.eCommerce
{
    [Dynamicweb.Extensibility.Subscribe(Dynamicweb.Notifications.eCommerce.ProductList.BeforeSort)]
    public class EcomProductListBeforeSortObserver : Dynamicweb.Extensibility.NotificationSubscriber
    {
        public override void OnNotify(string notification, Dynamicweb.Extensibility.NotificationArgs args)
        {
            if (args == null || !(args is Dynamicweb.Notifications.eCommerce.ProductList.BeforeSortArgs))
                return;

            Dynamicweb.Notifications.eCommerce.ProductList.BeforeSortArgs item = (Dynamicweb.Notifications.eCommerce.ProductList.BeforeSortArgs)args;

            //TODO: Add code here
        }
    }
}

Imports Dynamicweb

Namespace Dynamicweb.Examples.Vb.Notifications.eCommerce
    <Global.Dynamicweb.Extensibility.Subscribe(Global.Dynamicweb.Notifications.eCommerce.ProductList.BeforeSort)> _
    Public Class EcomProductListBeforeSortObserver
        Inherits Global.Dynamicweb.Extensibility.NotificationSubscriber

        Public Overrides Sub OnNotify(ByVal notification As String, ByVal args As Global.Dynamicweb.Extensibility.NotificationArgs)
            If args Is Nothing OrElse Not (TypeOf args Is Global.Dynamicweb.Notifications.eCommerce.ProductList.BeforeSortArgs) Then
                Return
            End If

            Dim item As Global.Dynamicweb.Notifications.eCommerce.ProductList.BeforeSortArgs = DirectCast(args, Global.Dynamicweb.Notifications.eCommerce.ProductList.BeforeSortArgs)
            'TODO: Add code here
        End Sub

    End Class
End Namespace
Remarks
The passed NotificationArgs is eCommerce.ProductList.BeforeSortArgs
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

eCommerce.ProductList Class
eCommerce.ProductList Members

Send Feedback