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

Answer

It seems to me that I did not say the right thing. I want the default menu to like this: (in attached file).

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, when authenticated with google in redirect to my project i have error.

Hi, I could see the Google button But when I click on it, the following error occurs! "The OAuth client was not found."

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;
        }

How to solve the problem right now? Should I download the project again and replace the previous project? Then transfer the my codes to the new project?

Showing 1 to 10 of 85 entries