Base solution for your next web application

Activities of "ramezani583"

Hi, I want replace(automatically) right panel(chat panel) with left panel(Menu) when language set to Persian or Arabic.

thanks

Question

Hi, How to set the main menu to be closed by default?

Hi, When i selected "enum" type for filed type, the tool is hanged!

Hi, When I run the mobile project, the following error occurs. "A Problem occurred while trying to communicate with the server" How can I see the error text? Is there a log to view the error?

Hi, How to convert type 'System.Collections.Generic.List<Province>' to 'Abp.NameValue<string>'

public List<NameValue<string>> GetProvincesForCombo(string searchTerm)
        {

            var provinces = _provinceRepository
                .GetAll()
                .WhereIf(
                    !searchTerm.IsNullOrWhiteSpace(),
                    p =>
                        p.Name.ToLower().Contains(searchTerm.ToLower())
                )
                .OrderBy(p => p.Name);
             
            
            return (NameValue<string>) provinces;
        }
Question

Hi, I want to call the web service and save the data received from it in the program. Is there a documentation for calling the web service? In which project should I call the web service?

hi, I enable google login for social media logins in appsettings.json. but in login page I don't see login with google.

,
      "Google": {
        "IsEnabled": "true",
        "ClientId": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
        "ClientSecret": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
      },

Should I do something else?

Hi, Why does this occur in the program when changing language(dropdown list)? While there is no problem in the development environment?

<a class="postlink" href="http://s000.tinyupload.com/?file_id=40881151558947985289">http://s000.tinyupload.com/?file_id=408 ... 8947985289</a>

Hi, I would like to show the creatorusername in UI If i define " public string CreatorUserName { get; set; }" in EntityListDto is enough? Will object-mapper it automatically do this?

public class ProvinceListDto : EntityDto<long>, IHasCreationTime
    {
        public string Name { get; set; }
        public DateTime CreationTime { get; set; }
        public string CreatorUserName { get; set; }
        public bool IsDeleted { get; set; }
      
    }

public async Task<PagedResultDto<ProvinceListDto>> GetProvinces(GetProvincesInput input)
        {
            var query = _provinceRepository
                .GetAll()
                .WhereIf(
                    !input.Filter.IsNullOrWhiteSpace(),
                    p =>
                        p.Name.Contains(input.Filter)
                );
            var provinceCount = await query.CountAsync();

            var provinces = await query
                .OrderBy(input.Sorting)
                .PageBy(input)
                .ToListAsync();

            var provinceListDtos = ObjectMapper.Map<List<ProvinceListDto>>(provinces);

            return new PagedResultDto<ProvinceListDto>(
                provinceCount,
                provinceListDtos
                );
        }

Hi, How to load all records(with soft deleted rows)?

Showing 1 to 10 of 32 entries