Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

RenderButtonCustom.cs

namespace Nop.Web.Framework.Models.DataTables;

/// <summary>
/// Represents button custom render for DataTables column
/// </summary>
public partial class RenderButtonCustom : IRender
{
    #region Ctor

    /// <summary>
    /// Initializes a new instance of the RenderButtonEdit class 
    /// </summary>
    /// <param name="className">Class name of button</param>
    /// <param name="title">Title button</param>
    public RenderButtonCustom(string className, string title)
    {
        ClassName = className;
        Title = title;
    }

    #endregion

    #region Properties

    /// <summary>
    /// Gets or sets Url to action
    /// </summary>
    public string Url { get; set; }

    /// <summary>
    /// Gets or sets button class name
    /// </summary>
    public string ClassName { get; set; }

    /// <summary>
    /// Gets or sets button title
    /// </summary>
    public string Title { get; set; }

    /// <summary>
    /// Gets or sets function name on click button
    /// </summary>
    public string OnClickFunctionName { get; set; }

    #endregion
}