Publish works. npm run create-bundles works. npm run build craps out here:
let btnEdit = `#${_args.name}-list .alert-close .editBtn`;
$(document).on('click', btnEdit, function () {
let parent = $(this).closest(".alert");
let index = parent.attr("data-index");
let item = _keyValueItems[index];
manageEditMode(item?.key);
});
in the file
_keyValueListManager.js
For diagnostic purposes only, I removed the ? from both item?key calls and it passed without issue - then failed on datatables when it used ??
@andyfuw - Did you find a workaround for this?
Is there a temprorary work around for this?
I'm also getting this error - breaking deployments to production.
I don't get the error when running create-bundles gulp
I think I see a bug fix in 8.9.2 for this, I think.
These are non-modal CreateOrEdit forms.
I've followed these instructions for ensuring my app pool doesn't quit.
https://weblog.west-wind.com/posts/2013/oct/02/use-iis-application-initialization-for-keeping-aspnet-apps-alive
Unit of work, clearing filters, etc. did the trick. that's how I do this when necessary now.
Thank you.
I have successfully accomplished this.
For anyone looking on how:
In Core project, next to your entity, you can create a domain service there, inheriting from workDomainServiceBase
Then, bring that into your appservice (in Applications).
Then, move methods required for your domain service from Applications, and have those methods call the function in the Domain service.
This will let you put certain methods "on an island" as needed.
Ok, thanks
Ok - I'll do that. Thanks.