Base solution for your next web application

Activities of "slapointe"

Hello!

Would it be possible to set up ABPZero to only keep Abp related tables on the HOST DB and only add business logic/tables to the tenant DBs, I noticed when creating a tenant it will create all the Abp Supported tables under the new connection string.

If not, could you expand on the reasoning behind this?

Hello When trying to invoke a deleteAction from a modal i get a Maximum Call stack exceeded error, the confirmation dialog appears behind the current modal.

i've attached two pictures, one after clicking the delete button, and one after closing the modal, showing the confirmation box. Upon trying to confirm deletion it will produce an undefined exception as the table and modal has been destroyed. relevant code:

(function () {
    app.modals.CreateOrEditDistributorModal = function () {
.....
this.init = function (modalManager) {
            _modalManager = modalManager;

            _$itemCodeTable.jtable({
                title: app.localize('ItemCodes'),

                paging: true,
                pageSize: 15,
                sorting: true,
                defaultSorting: 'Itemcode ASC',


                actions: {
                    listAction: {
                        method: _distributorService.getSkusForDistributor
                    },
                    deleteAction: {
                        method: _distributorService.deleteSkuForDistributor
                    }
                },
fields: { .......}

}

Showing 1 to 2 of 2 entries