I have also just compared my suite templates to that of my team members and mine are not the same. It appears the attempted upgrade to 8.0.1 and then downgrade, didnt reset the code templates. How do I reset these? I have uninstalled and reinstalled abp cli and suite numerous times to resolve with no luck. I would like to just reset the code generation templates to v7.3.2
finally figured it out for anyone else experiencing the same issue.
I have created a brand new solution using ABP suite and included a react native mobile application. I have added the file management module (for future use) and built the web solution and it works fine. I made the changes are suggested in the mobile development guide here: https://docs.abp.io/en/abp/latest/Getting-Started-React-Native?Tiered=No
I have started the web solution on the following URL:
configured in the appsettings of the web project:
and made the required changes to the pre configure services:
my environment.js file is as below:
The mobile app starts up on localhost:19006 but doesnt display anything (I am using the [Press w | open web] expo option.
this is the issue in my browser when inspecting the page:
That IP listed in the screenshot is my local IP. I followed those steps exactly.
I would expect that the solution should work out of the box and that I should have to resort to Android Studio to make it work.
Hi ABP Team,
We are currently using the built-in File Management Module and would like to explore the possibility of extending it to support tagging functionality.
Ideally, we would like to model this as a many-to-many relationship to an existing Tags table in our database. However, we understand that the module may not support this natively.
As a fallback, we would be happy with support for a multi-select UI that stores the selected values as a comma-separated string (e.g., tag names). We were hoping to achieve this using Module Entity Extensions in a manner similar to:
user.AddOrUpdateProperty<Guid>( "DepartmentId", property => { property.UI.Lookup.Url = "/api/departments"; property.UI.Lookup.DisplayPropertyName = "name"; } );
But extended to allow multiple selections and storing the result as a comma-separated string instead of a single Guid.
Questions: Is it possible to achieve this via the current module extension mechanism?
If not, is there a supported way to either:
Enable a multi-select lookup with comma-separated value storage?
Or bind the extension to a many-to-many relationship using a join table?
Any guidance or examples would be greatly appreciated.
Thanks again for the fantastic framework!