Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "ryancyq"

Hi @cangunaydin, thanks for the info.

Would you be able to share the exact steps to reproducde the issue? That will help a lot. :)

Hi, the configuration App:SwaggerEndPoint should be valid. swagger/v1/swagger.json has moved to appsettings.json

https://github.com/aspnetzero/aspnet-zero-core/blob/b2edfef64f936080e720e78052c61716a7391357/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Host/appsettings.json#L16

Hi, you can try the approach done by the community at https://support.aspnetzero.com/QA/Questions/5527

Hi, did this happen on your machine for versions before 6.4.0?

Answer

Hi, there might be addtional/removed files between each version.

you can try to replace (instead of ovewrite) your entire project (6.2.1) with 6.4.0. Then you can see what files are added/removed when using git diff

Hi, have you tried passing in YearId as background job arguments as an alternative?

Since job arugments are serialized and persisted, you can use it in background job.

Hi @matt please share your App_Data/Logs/Logs.txt related to /AbpUserConfiguration/GetAll

you can try to convert to

this.RemoveCidade function(id){
    CidadesEscolhidas = str.replace("," + id, "");
    $("#cidadeVanLegalId").val(CidadesEscolhidas);
}

and call this.RemoveCidade() in the on click event

Hi, can you take a screenshot of the network request to ensure that Abp.TenantId is not sent by angular app?

I think this might be related to https://github.com/aspnetboilerplate/aspnetboilerplate/issues/3275

You should move real time button generation into init() of 'view-resources/Areas/App/Views/Anuncios/_CidadeVanLegalLookupTableModal.js

For example, the following should be in the js of the modal instead.

$("#divCidades").append("<button type='button' name= 'btn_RemoverCidade' value='" + data.id + "' class='btn btn_RemoverCidade m-btn--pill ' m-btn m-btn--custom m-btn--bolder m-btn--uppercase '><i class='fa fa-close'></i>" + data.displayName + "</button>");               
CidadesEscolhidas = CidadesEscolhidas + "," + data.id;
$("#cidadeVanLegalId").val(CidadesEscolhidas);

and

//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
//Removing the BUTTONS
//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    
$('.btn_RemoverCidade').on("click", function () {
    var value = $(this).attr('value');
    RemoveCidade(value);
    $(this).remove();
});

function RemoveCidade(id){
    CidadesEscolhidas = str.replace("," + id, "");
    $("#cidadeVanLegalId").val(CidadesEscolhidas);
}

If you look at how _modal.open(arg1, arg2) works at https://github.com/aspnetzero/aspnet-zero-core/blob/6f790fdc31bbb2360f7be5cfdd83889eb16e496a/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Mvc/wwwroot/Common/Scripts/ModalManager.js#L106-L109

arg2 is actually only called when _modal.setResult() is called. setResult() is usually called when modal is saving/closing.

Showing 381 to 390 of 573 entries