Base solution for your next web application

Activities of "mumfie"

did you restore the packages in wwwroot\lib ? I think the public site is before Yarn/npm was used but you can right click on bower.json in vs solution explorer

Hi, I had the exact same issue with v5.x but did limited testing with newly downloaded ANZ v6.0.0 Core + jQuery template using chrome on the audit log and users index pages only and problem seems to be resolved.

Hi rnguyen, Does the log output folder exist and does the apppool have write access to it? This link might be usefull https://odetocode.com/blogs/scott/archive/2018/07/16/7-tips-for-troubleshooting-asp-net-core-startup-errors.aspx

This is one I have used in the past https://github.com/dncuug/X.PagedList

<cite>kumaran: </cite> Also if there is a detail documentation on how paypal integration works other than the settings, it would be great.

You can look at the class PayPalGatewayManagaer.cs in conjunction with the paypal api docs <a class="postlink" href="https://developer.paypal.com/docs/api/overview/#make-your-first-call">https://developer.paypal.com/docs/api/o ... first-call</a> <a class="postlink" href="http://paypal.github.io/PayPal-NET-SDK/Samples/PaymentWithPayPal.aspx.html">http://paypal.github.io/PayPal-NET-SDK/ ... .aspx.html</a> <a class="postlink" href="https://developer.paypal.com/docs/api/overview/#authentication-and-authorization">https://developer.paypal.com/docs/api/o ... horization</a> <a class="postlink" href="https://github.com/paypal/PayPal-NET-SDK">https://github.com/paypal/PayPal-NET-SDK</a>

<cite>DavidHarrison: </cite>

Does anyone have experience with or know how to load and reload partial views via ajax? Any pointers or existing system examples greatly appreciated.

We have done similar via javascript using Core/JQuery

Javascript
function _refreshSearchResultsList(pageIndex, newSearch) {
     
            var searchFiltersData = _$form.serializeFormToObject();
            var _refreshSearchAction = abp.appPath + 'App/JobVacancy/AXSearchResults';
            searchFiltersData.PageIndex = pageIndex;
            searchFiltersData.PageSize = pageInfo.pageSize;
            jsonText = JSON.stringify(searchFiltersData);
            abp.ajax({
                method: 'POST',
                url: _refreshSearchAction,
                data: jsonText,
                dataType: 'html',
                success: function (data) {
                    $('#searchResults').html(data);
                    afterRefreshSearchResults();
                    // always update for case edited after paging 
                    pageInfo.pageIndex = searchFiltersData.PageIndex;
                }
            }).done(function (data) {

                //debugger;

            });
        }
Controller action
  public async Task<ActionResult> AXSearchResults([FromBody]JobVacancyListFilters input)
        {        
            PagedResultDto<JobVacancyListDto> output;           
            output = await _jobVacancyAppService.GetSearchResultsList(input);
            var model = new JobVacancyIndexViewModel(output.Items, null, null, output.TotalCount, input.PageIndex, input.PageSize, input, await GetJobSeekerSettings());
            return PartialView("_SearchResults", model);
        }

<cite>kwanp: </cite> how can i find sample code for create Form Wizard

Hi kwanp, If you download the metronic source files from your ASPNetZero downloads page you can look at the source for wizard-1.html. You can then add the relavant includes , clientside scripts and backend components to your page. [attachment=0:39fu9h27]Wizard.png[/attachment:39fu9h27]

Question

Does Abp or Aspnetzero provide any help to remove secrets like connection strings, Api access keys etc from appsettings.json etc ? I need to remove these from being stored in source control and also to help secure production environment.

have looked at secrets.json and several other methods including
<a class="postlink" href="https://www.humankode.com/asp-net-core/asp-net-core-configuration-best-practices-for-keeping-secrets-out-of-source-control">https://www.humankode.com/asp-net-core/ ... ce-control</a>
<a class="postlink" href="https://winterlimelight.com/2017/02/28/net-core-secrets/">https://winterlimelight.com/2017/02/28/ ... e-secrets/</a> Thanks.

<cite>TimMackey: </cite> Oh, you want to play "20 Questions"! OK, let's begin... How do I login as host?

For Core + jQuery version just click on the Change link on the login screen and for the Tenancy name enter blank and save. You can then login using the Host credentials.

<cite>skinnerjames: </cite> @clusterkiller- We are preparing to do the same upgrade that you mentioned but are using the angular version. Are you willing to share your opinion on the best and most efficient approach for this task?

My recomendation is to keep a working copy of the project before the upgrade for comparison. I encountered a few issues upgrading the JQuery/Core version e.g. Datagrid paging on Modals, UI format changes.

Showing 11 to 20 of 33 entries