Activities of "EngincanV"

Hi, you can override the Login and Register pages and simply specify the layout as your own layout as below:

@page
//...
@model Volo.Abp.Account.Public.Web.Pages.Account.LoginModel
@inject IHtmlLocalizer<AccountResource> L
@inject Volo.Abp.AspNetCore.Mvc.UI.Layout.IPageLayout PageLayout
@inject ISettingProvider SettingProvider
@{
    Layout = "your-own-layout-path";
}

@* ... *@

Just install the source code of the Volo.Account.Pro module and copy-paste content of both login and register pages and specify your own layout for them.

It should be fixed, can you try it again?

Hi @berly, thanks for reporting. I'll check and write you back asap.

Answer

Hi, you can define the icon when defining a new menu item like below:

context.Menu.AddItem(
    new ApplicationMenuItem("MyProject.Crm", l["Menu:CRM"])
        .AddItem(new ApplicationMenuItem(
                name: "Name",
                displayName: "Display",
                url: "/crm/my-url",
                icon: "fa fa-tag" //define your Font Awesome icon here.
            )
        ));
  • Manipulating existing menu item and changing the icon of it, please see the Navigation Menu documentation.

Hi @shijo, thanks for reporting the problem. We are aware of this problem and will fix it asap. I'll inform you when it's resolved. Btw, your credit is refunded.

what if I wanted to do my changes at server side not JavaScript?

The same is also valid for razor pages and etc.. You only need to create a new razor page/class on the same path and change by your needs.

Please check the https://docs.abp.io/en/abp/5.3/UI/AspNetCore/Customization-User-Interface?_ga=2.135766769.1926299507.1654164050-344190752.1654164050#overriding-a-page .

Hi, it seems there are some problems with debugging in Visual Studio for Blazor applications. (as you've faced, "children could not be evaluated" etc.)

This problem is related to Visual Studio rather than ABP Framework. I found a thread that you can follow and apply suggestions that have been made. So please check this thread.

To use the Buttons extension from DataTable, you need to add some additional js files to your application.

  • https://cdn.datatables.net/buttons/2.2.3/js/dataTables.buttons.min.js
  • https://cdn.datatables.net/buttons/2.2.3/js/buttons.html5.min.js
  • https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js -> if you want excel button
  • https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js -> if you want pdf button

Alternatively, you can use the download builder of Datatables (https://datatables.net/download/) to ensure install all related packages.

Then you can use it like you mentioned:

$(document).ready(function() {
    $('#example').DataTable( {
        dom: 'Bfrtip',
        buttons: [
            'copyHtml5',
            'excelHtml5',
            'csvHtml5',
            'pdfHtml5'
        ]
    } );
} );

It's not fully related with ABP Framework, you can follow the documentation of Datatables (Buttons Extension) and make the necessary configurations (you need to add the above js files to your project) to make it work.

Hi, you can override it by creating an Index.js file in the same directory of the module file (/Pages/Identity/Users/index.js) and copy the module content to that newly created file and make your changes.

  • Index.js (/Pages/Identity/Users/index.js)
(function ($) {

    var l = abp.localization.getResource('AbpIdentity');

    //...

    abp.ui.extensions.tableColumns.get("identity.user").addContributor(
        function (columnList) {
            columnList.addManyTail(
                [
                    {
                        title: l('Actions'),
                        rowAction: {
                            items: abp.ui.extensions.entityActions.get("identity.user").actions.toArray()
                        }
                    },
                    //other fields
                    {
                        title: l('CreationTime'),
                        data: "creationTime",
                        dataFormat: "datetime" //change data format by your needs
                    },
                ]
            );
        },
        0 //adds as the first contributor
    );
    
    //...
})(jQuery);

Please see the following resources for more:

  • https://docs.abp.io/en/abp/5.3/UI/AspNetCore/Customization-User-Interface
  • https://docs.abp.io/en/abp/5.3/UI/AspNetCore/Entity-Action-Extensions
  • https://docs.abp.io/en/abp/5.3/UI/AspNetCore/Data-Table-Column-Extensions

If you want buttons outside of the Datatable, you can directly add it to your .cshtml file as below:

<abp-card>
    <abp-card-body>
        <button class="btn btn-primary mb-3">My Button</button>
        <abp-table striped-rows="true" id="MyTable" class="nowrap"></abp-table>
    </abp-card-body>
</abp-card>

Also instead of this, you might want to use Page Toolbar Extensions.

Showing 1081 to 1090 of 1359 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41