Activities of "rkola"

hi i check the /Abp/ServiceProxyScript this endpoint testproject object is okey but testproject.neigboorhoods not , how can i include services into client-proxy i tried generate-proxy but it didnt create neighboorhoods part

thank you but how can i react the testproject object

hello im getting js error in the a custom entity index.js page, i have another custom entities but they are working , code above

`$(function () { var l = abp.localization.getResource("testproject");

var neigboorhoodService = window.testproject.Neigboorhoods.Neigboorhoods;

    var lastNpIdId = '';
    var lastNpDisplayNameId = '';

    var _lookupModal = new abp.ModalManager({
        viewUrl: abp.appPath + "Shared/LookupModal",
        scriptUrl: "/Pages/Shared/lookupModal.js",
        modalClass: "navigationPropertyLookup"
    });

    $('.lookupCleanButton').on('click', '', function () {
        $(this).parent().find('input').val('');
    });

    _lookupModal.onClose(function () {
        var modal = $(_lookupModal.getModal());
        $('#' + lastNpIdId).val(modal.find('#CurrentLookupId').val());
        $('#' + lastNpDisplayNameId).val(modal.find('#CurrentLookupDisplayName').val());
    });

var createModal = new abp.ModalManager({
    viewUrl: abp.appPath + "Neigboorhoods/CreateModal",
    scriptUrl: "/Pages/Neigboorhoods/createModal.js",
    modalClass: "neigboorhoodCreate"
});

var editModal = new abp.ModalManager({
    viewUrl: abp.appPath + "Neigboorhoods/EditModal",
    scriptUrl: "/Pages/Neigboorhoods/editModal.js",
    modalClass: "neigboorhoodEdit"
});

var getFilter = function() {
    return {
        filterText: $("#FilterText").val(),
        name: $("#nameFilter").val(),
		districtId: $("#DistrictIdFilter").val()
    };
};

var dataTable = $("#NeigboorhoodsTable").DataTable(abp.libs.datatables.normalizeConfiguration({
    processing: true,
    serverSide: true,
    paging: true,
    searching: false,
    scrollX: true,
    autoWidth: true,
    scrollCollapse: true,
    order: [[1, "asc"]],
    ajax: abp.libs.datatables.createAjax(neigboorhoodService.getList, getFilter),
    columnDefs: [
        {
            rowAction: {
                items:
                    [
                        {
                            text: l("Edit"),
                            visible: abp.auth.isGranted('testproject.Neigboorhoods.Edit'),
                            action: function (data) {
                                editModal.open({
                                 id: data.record.neigboorhood.id
                                 });
                            }
                        },
                        {
                            text: l("Delete"),
                            visible: abp.auth.isGranted('testproject.Neigboorhoods.Delete'),
                            confirmMessage: function () {
                                return l("DeleteConfirmationMessage");
                            },
                            action: function (data) {
                                neigboorhoodService.delete(data.record.neigboorhood.id)
                                    .then(function () {
                                        abp.notify.info(l("SuccessfullyDeleted"));
                                        dataTable.ajax.reload();
                                    });
                            }
                        }
                    ]
            }
        },
		{ data: "neigboorhood.name" },
        {
            data: "district.name",
            defaultContent : ""
        }
    ]
}));

createModal.onResult(function () {
    dataTable.ajax.reload();
});

editModal.onResult(function () {
    dataTable.ajax.reload();
});

$("#NewNeigboorhoodButton").click(function (e) {
    e.preventDefault();
    createModal.open();
});

$("#SearchForm").submit(function (e) {
    e.preventDefault();
    dataTable.ajax.reload();
});

$("#ExportToExcelButton").click(function (e) {
    e.preventDefault();

    neigboorhoodService.getDownloadToken().then(
        function(result){
                var input = getFilter();
                var url =  abp.appPath + 'api/app/neigboorhoods/as-excel-file' + 
                    abp.utils.buildQueryString([
                        { name: 'downloadToken', value: result.token },
                        { name: 'filterText', value: input.filterText }, 
                        { name: 'name', value: input.name }, 
                        { name: 'districtId', value: input.districtId }
                        ]);
                        
                var downloadWindow = window.open(url, '_blank');
                downloadWindow.focus();
        }
    )
});

$('#AdvancedFilterSectionToggler').on('click', function (e) {
    $('#AdvancedFilterSection').toggle();
});

$('#AdvancedFilterSection').on('keypress', function (e) {
    if (e.which === 13) {
        dataTable.ajax.reload();
    }
});

$('#AdvancedFilterSection select').change(function() {
    dataTable.ajax.reload();
});

}); `

  • **ABP Framework version:**v6.02
  • UI type: Angular / MVC / Blazor
  • DB provider: EF Core / MSSQL
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:Uncaught TypeError: Cannot read properties of undefined (reading 'Neigboorhoods') at HTMLDocument.<anonymous> (index.js?_v=638138540899034533:4:64) at mightThrow (jquery.js?_v=638091882170120000:3830:29) at process (jquery.js?_v=638091882170120000:3898:12)
  • Steps to reproduce the issue:"
Question

Hello,

I get this error. I think its an internal error.

SporEdu.EntityFrameworkCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null should inherit/implement Volo.Abp.Identity.EntityFrameworkCore.IIdentityDbContext, Volo.Abp.Identity.EntityFrameworkCore, Version=7.0.2.0, Culture=neutral, PublicKeyToken=null!'

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v7.0.2
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
Showing 1 to 4 of 4 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11