Hi @huntethan89,
Could you try this solution?
Add wrap attribute to the class.
[WrapResult(WrapOnSuccess = false, WrapOnError = false)]
public class ProxyController : ProjectDemoControllerBase
{
public async Task<IActionResult> Index()
{
var url = "the-url";
// Ensure the response is fully handled by HttpProxyAsync
await this.HttpProxyAsync(url);
// Return a blank result to avoid modifying the response after it has started
return new EmptyResult();
}
public Task ProxyToPHPServer()
{
return this.HttpProxyAsync("url");
}
}
Hi @WirelessDynamics,
Could you share your entity.json files? For base entity and child entity. So I can offer you a temporary solution.
Hi @WirelessDynamics,
It is not possible at the moment. You need to handle it manually
Hi @truist.software,
This error happens if you don't select any column. You can choose at least one column.
You can add following line to _ExcelColumnModal.js
this.save = function () {
const exportExcelInput = _modalManager.getArgs();
exportExcelInput.selectedColumns = _modalManager
.getModal()
.find('input[type="checkbox"]:checked')
.map(function () {
return $(this).val();
})
.get();
// Fix error
if (exportExcelInput.selectedColumns.length === 0) {
abp.message.warn(app.localize('PleaseSelectAtLeastOneColumn'));
return;
}
_brosService.getBrosToExcel(exportExcelInput).done(function (result) {
app.downloadTempFile(result);
_modalManager.close();
});
};
Hi @gekko,
Could you update your aspnetzero to the latest version? Or you can update to the latest Abp.Zero.Common
https://github.com/aspnetboilerplate/aspnetboilerplate/issues/6950
Hi @truist.software,
Sorry for the late reply. We detected the error. In the next release, it will be fixed.
Hi @mittera,
If you share the logs from the application, we may find the error. The application service methods in the plugin must work successfully.
This is a modular monolith example. However, the structure is similar to the plugin system. https://github.com/aspnetzero/aspnet-zero-samples/tree/master/ModularMonolithMvcDemo
Also the documentation https://aspnetboilerplate.com/Pages/Documents/Plugin
Hi @WirelessDynamics,
Thanks for your reporting. I found the error is related to non-modal master-detail pages. I've created an issue about it. It will be released in the next version. https://github.com/aspnetzero/aspnet-zero-core/issues/5344
Hi @Jorahealth,
I reviewed your project and identified that the errors are likely due to incompatibility between third-party libraries and Angular. All third-party libraries using Angular must have matching versions. For example, if one library uses Angular 18 and another uses Angular 17, conflicts can arise.
Hi @[email protected],
Could you check on this project? https://github.com/aspnetzero/aspnet-zero-samples/tree/master/ElsaAngularDemo
If you are unable to get it to work, please share your project with us. [email protected]