Activities of "gvnuysal"

Answer

Hi maliming, Our version is 4.4.3,we are using HTTPS also we get this error after installing it on IIS. This is not the case in the developer environment.When we look at the Chrome console, we see that you clear the local storage when it redirects from API to angular.

Question

Hi, When the site redirects to Angular after my login process, I see CurrentUser is not logged in

Question

Hi support,

We updated our project from version 3.3.1 to version 4.3.2. We used a class belonging to the File Management module in the project. We could not find this class in the new version.

 CreateFileInput blobInput = new CreateFileInput
            {
                Content = input.Content,
                DirectoryId = null,
                Name = input.Name,
                MimeType = input.MimeType
            };

Hi yorytang, You can change it from the database the project uses

thanks mehmet.Awesome.

Hi @Mehmet, Thanks your answer.

How can we do without updating version?

Thanks.

Hi support,

Anyone have a suggestion?

  • **ABP Framework version:**Abp Commercial v3.3.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no Hi support,
  1. Our menu tree is getting crowded, so we can't find the module we want easily, so it would be nice if we add a search to the menu like in asp.net zero. Will the search be added in the menu?

  1. There are 14 separate companies that a user in one of our customers must manage.It does not seem directly with which tenant he logged in.

but when I log in abp commercial with tenant, it appears directly.

In our project

How can we add the tenant name to a visible place. How can we show it without clicking the user picture?

Answer

Hi support, After I updated suite, when I add a new property to the entity, I get the error in the picture.

Hi @alper, I create my report file with Datawizard as follows.

I did not transfer data to the report file I prepared using abp services. It will be nice if an article or document is published on your site.


namespace DevexpressReporting.Reporting
{
    public class ReportingService:ITransientDependency
    {
        private IProductRepository _productAppService;

        public ReportingService(IProductRepository productAppService)
        {
            _productAppService = productAppService; // for _productAppService (null variable occurs)
        }

        public  List<Product> GetProducts()
        {
           
            return _productAppService.ToList();
        }
    }

    public class CreateReport
    {
        private ReportingService _reportingService;

        public CreateReport(ReportingService reportingService)
        {
            _reportingService = reportingService;
        }
        public List<Product> GetReport()
        {
            return _reportingService.GetProducts();
        }
    }
    
}

When I export GetProduct () in the ReportingService class as datasource, I get a Null reference error. It will be nice if a document is published for Angular and .Net core

Zobrazeno od 21 do 30 z celkem 81 záznamů
Made with ❤️ on ABP v8.2.0-preview Updated on března 25, 2024, 15:11