Base solution for your next web application

Activities of "felixbeltran"

Hi,

I'm running the code with npm run hmr

Every time I make a modification to the code the compiler takes too long to refresh. It get stucked for several seconds in step "92% chunk asset optimization". Productivity is really low. Do you have any idea how to make it faster?

Thanks.

Hi,

If I click on the context menu of Jtable (for example, on the users menu) and then click on an option of the left menu, the context menu keeps flying on the screen and it does not disappear. I have to reload the page to make it go away.

Hi,

I'm trying to contribute the code for the mexican spanish translation. I first tried to create a new branch and then send a pull request from my branch to the Dev branch (no success). Later tried to make changes directry on the Dev branch and send the pull request from Dev to Master branch.

I keep getting error messages.

I'm new on github and I'm not sure how I should contribute. Could you please advise. Thanks.

If you click on the "Actions" menu of any grid, (for example "Users"), and then click on any link on the left menu, the pop-up menu doesn't dissapear and it keeps flying on the application.

I'm tring to install the client Angular 2 App on IIS inside an application folder ej. <a class="postlink" href="http://mysite.com/appfolder/">http://mysite.com/appfolder/</a> The problem I had is that, by default, the client app will try to fetch files from the root folder (<a class="postlink" href="http://mysite.com/">http://mysite.com/</a>) I managed to change this by building the app with this:

ng build -prod -bh /appfolder/

Now it's fetching the files from the correct path, but there is a problem with the "getApplicationConfig" from "AppPreBootstrap.ts" file, it always looks for the "appconfig.json" file from "/assets/appconfig.json" (<a class="postlink" href="http://mysite.com/assets/appconfig.json">http://mysite.com/assets/appconfig.json</a>)

Code:

private static getApplicationConfig(callback: () => void) {
        return abp.ajax({
            url: '/assets/appconfig.json',
            method: 'GET',
            headers: {
                'Abp.TenantId': abp.multiTenancy.getTenantIdCookie()
            }
        }).done(result => {

I fixed this by changing "url: '/assets/appconfig.json'," to "url: 'assets/appconfig.json',". Could you please advise if this is correct and won't create anoter problem? Thanks.

The angular documentation (<a class="postlink" href="https://www.aspnetzero.com/Documents/Development-Guide-Angular">https://www.aspnetzero.com/Documents/De ... de-Angular</a>) makes extensive references to "Server side" documentation (<a class="postlink" href="https://www.aspnetzero.com/Documents/Development-Guide-Core">https://www.aspnetzero.com/Documents/De ... Guide-Core</a>), but I belive this server side documentation is for the old Core & Angular project. Could you please confirm and clarify?

Thanks.

Question

Hi,

I have an ASP.NET ZERO application and i need to send and receive chat messages to / from a mobile App developed with Xamarin. Is there a way to implement such chat service between the Zero Web application and a mobile App? Can we use the same SignalR services?

Please advice.

Thanks, Felix.

Question

Hi,

Newest aspnet-zero release (V1.13.0) says that it was updated to metronic v4.7 but there is no link to download that version. The latest download available is for V4.6 Where can i get it?

I'm looking here: <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/releases">https://github.com/aspnetzero/aspnet-zero/releases</a>

Thanks, Felix.

Question

Hi,

I would like to develop a REST service to be used not from the application layer, but from an external App, for example, a mobile App. What should I do?

Trying to consume a REST service usgin ASP.NET Web API from ABP doesn't seem to work right out of the box. I get an 500 error.

Thanks, Felix.

Showing 1 to 9 of 9 entries