Base solution for your next web application

Activities of "Bernard"

Question

Hi,

It seems that the calendar widget is not in current language : $('.startDate').daterangepicker({ autoUpdateInput: false, singleDatePicker: true, locale: abp.localization.currentLanguage.name, format: 'L', })

How can i do that ?

Thks

Question

Hi,

It often happens that I modify an entity directly in its class, is it possible to update the Radtool generation file of this entity with the new attributes ?

Thks

Question

Hi,

I'm wondering if is it possible to change template or css ? How can i get Language texts like @L("French") for typeahead message ?

Thks

Hi,

When starting migration, I have this warning what does it mean, what should I change ?

No store type was specified for the decimal property 'TotalTVA' on entity type 'Facture'. This will cause values to be silently truncated if they do not fit in the default precision and scale. Explicitly specify the SQL server column type that can accommodate all the values in 'OnModelCreating' using 'HasColumnType', specify precision and scale using 'HasPrecision', or configure a value converter using 'HasConversion'.

Thks

Hi,

**I wanted to know the method of updating a parent's fields after closing a modal is correct or if there is a simpler way: ** var selectedEntityId = $('#MasterDetailChild_Convention_LigneConventionsId').val();

_modalManager.setBusy(true); _ligneConventionsService .createOrEdit(ligneConvention) .done(function () {

     abp.notify.info(app.localize('SavedSuccessfully'));

         abp.ajax({
             type: 'GET',
             url: '/api/services/app/Conventions/GetConventionForView',
             data: {
                 id: selectedEntityId
             }
         }).done(function (data) {
           
             update_TotalHT(data.convention.totalHT.toFixed(2));
             update_TotalTVA(data.convention.totalTVA.toFixed(2));
             update_TotalTTC(data.convention.totalTTC.toFixed(2));
         });
   


     _modalManager.close();
     abp.event.trigger('app.createOrEditLigneConventionModalSaved');


 }), 

Hi,

I trying to install Angular project i have issue :

Question

Hi,

How can i refresh field in View after calling a modal with : _createOrEditModal.open();

Question

Hi,

What should i run for command when changing manually any js file ?

Thks

Question

Hi,

I implemented Elsa and everything works fine but Elsa is accessible without connecting how to force you to be connected to access it

i added : ` services.AddMvc() .AddRazorPagesOptions(options => {

   options.Conventions.AuthorizePage("/Workflows");

});

But doesn't work`, i would like to integrated Aspnet zero App permissions

).AddItem(new MenuItemDefinition( AppPageNames.Common.Elsa, L("Workflows"), url: "/Workflows", icon: "flaticon-map", permissionDependency: new SimplePermissionDependency(AppPermissions.Pages_Workflows)

thks

Hi,

I'm trying to implement the ability to read Outlook emails in my application (https://learn.microsoft.com/en-us/training/modules/msgraph-dotnet-core-show-user-emails/1-introduction), but I'm facing a problem because Graph needs to launch the services services // Add support for OpenId authentication .AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) failed

because an OpendConnectId Schema already exists

I think This code causes issue in Startup.cs

services // 2. Add support for OpenId authentication

.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)

.AddMicrosoftIdentityWebApp(Configuration)

How to fix this problem THANKS

Showing 11 to 20 of 42 entries