Starts in:
0 DAY
0 HR
38 MIN
2 SEC
Starts in:
0 D
0 H
38 M
2 S

Activities of "nabass"

Answer

hi Anjali,, it will not take the value into localization it will take the value within the tag it means that if i change the localization of this item no effect will happen

Answer

it's a company project i cant send it even if they allowed me because the size of it you can try any open project on your PC put <h5> or any tag not starts with <abp> it will not work <p> tag <a> tag <h1> tag ..... etc

Answer

no thing shows same as i don't put a tag and if i put it into tag itself the output will be:====> ["Opening Year / Period:"]

i solved it thank you if any one faced the same problem here is the solution -- make like CreateModel page syntax example: into class (Index.cs) public abstract class IndexModelBase : AbpPageModel { [BindProperty] public JournalVoucheraIndexViewModel JV { get; set; } public List<SelectListItem> CurrencyIdFilterMin { get; set; } = new List<SelectListItem> { new SelectListItem("-",null) }; private readonly ICurrencyAppService _currencyAppService; public IndexModelBase(ICurrencyAppService currencyAppService) { _currencyAppService = currencyAppService; }

 public virtual async Task OnGetAsync()
 {
     CurrencyIdFilterMin.AddRange((
                   await _currencyAppService.GetCurrencyLookupAsync(new LookupRequestDto
                   {
                       MaxResultCount = LimitedResultRequestDto.MaxMaxResultCount
                   })).Items.Select(t => new SelectListItem(t.DisplayName, t.Id.ToString())).ToList()
       );
 public class JournalVoucheraIndexViewModel : JournalVoucherDto
 {

 }

}

====================== into (index.cshtml) <abp-select asp-for="JV.CurrencyId" asp-items="Model.CurrencyIdFilterMin" label="@L["MinCurrencyId"].Value" />

hi sir i solved the problem it was in the Http controller in [HttpGet] method i was send {id} wrong way thanks for efforts and you can close the Q thanks

Answer

hi sir same error, i don't know what is this or what can i do to solve this is the first time to happen

Answer

hi your last command gives me this

Answer

here is Nuget.Config is there a line should i add to solve error ??

Answer

hi sir here is my error log

Answer

From where can i get my private key ?? And i want to use cli v 8.0.2 not latest version Abp suite was working and suddenly stopped And also it's working with my friend but not working with me 🤷🏻‍♂️

Showing 71 to 80 of 103 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06