Hi,
Sorry, I didn't find anything.
Could you please share a test project with me? I will check it. thanks.
shiwei.liang@volosoft.com
Hi,
I wonder if ABP.io will look to develop c# based asynchronously so that it can be fully c# based same as what ABP suite creates code for CreateModel and UpdateModel.
Unfortunately not, because the table needs to refresh and search, need to use js to operate DOM
This is the problem, you should use version 8.0.2
<PackageReference Include="Volo.Abp.BackgroundJobs.HangFire" Version="8.2.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Volo.Payment.Admin.Web" Version="8.0.2" />
HI,
okay, I unserstand. I can sure that we are using the same environment machine
can you please share the projects with me? i'd like to check it. shiwei.liang@volosoft.com
As I said, you need to do this on a machine that doesn't have access to the source code for any of the commercial modules.
If a machine can't access any commercial modules(without commercial nuget source), It certainly can't build.
This is not a problem.
you can consider creating a local nuget source and copy Volo.Abp.Commercial.Core ( all needed packages ) from your nuget cache to the local nuget source.
But I recommend you to delete all about volo.abp.commerical.core package and code.
Hi,
Sorry, I didn't get it. I tried the exact same steps as you, but I can't reproduce it.
Anyway, I'll have another coworker try your steps.
Hi,
yes, it's a part of the commercial source.
Or you can try to add a local nuget source and copy Volo.Abp.Commercial.Core package from your nuget cache folder to here.
Hi,
you can try to remove Volo.Abp.Commercial.Core from the Volo.Abp.TextTemplateManagement
Thanks Liangshiwei, it is not giving the result I am looking for, it is just repeating the same author-name
This is because the look-up result doesn't have ID property
Add ID to AuthorLookupDto
Update JS
render: function(data, type, row, meta)
{
return _authors.items.find(type => type.id === row.authorID).firstname;
}
When I use Suite, it creates code in Javascript for list view, not c#
yes, Suite always uses JS to load the view because the list needs to be loaded asynchronously .