Base solution for your next web application

Activities of "riaan"

Hi @ismcagdas,

With the release of v8.7 where RAD tool is now able to genereate master and detail pages, how do you go about it?

Is there a specific option you need to set?

I'm reviewing the feature using ASPNET Zero v8.7.0 (MVC) and RAD Tools 2.2.1.2, but I don't seem be able to determine how to do this.

IAny help would be appreciated.

Hi @ismcagdas,

I've only added the Xamarin.Forms.Maps nuget package to the Xamarin App's Droid project. Haven't added any new pages yet, so it is the only "modification" made to the app.

Hi,

Has any experience the below error when adding a Xamarin Forms Map to the ASPNET Zero Xamarin app?

On app startup during the splash display

Unhandled Exception:

Java.Lang.RuntimeException: Unable to start activity ComponentInfo{com.[PROJECTNAME].Mobile/md53fe6e38767471a4d81890f4256fb3813.SplashActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

It fails on the SplashActivity right after the OnCreate method:

protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            UserDialogs.Init(this);
            ConfigureFlurlHttp();
            SetExitAction();
        }

We are using Xamarin.Forms.Maps version 2.3.4.347 any newer version causes compile errors in the googleplayservices java classes

Any assistance would be greatly appreciated.

Thanks,

Riaan

@poolman,

I get the same error/issue as you on MVC/jQuery.

It appears that not all the resources files were downloaded using the new Yarn/Gulp process. (I'm fairly new to this)

Below the errors as displayed in my browser's console upon launching the Mvc project.

Failed to load resource: the server responded with a status of 404 (Not Found)
account-layout-libs.css Failed to load resource: the server responded with a status of 404 (Not Found)
common-styles.css Failed to load resource: the server responded with a status of 404 (Not Found)
account-layout-libs.js Failed to load resource: the server responded with a status of 404 (Not Found)
common-scripts.js Failed to load resource: the server responded with a status of 404 (Not Found)
account-layout-libs.js Failed to load resource: the server responded with a status of 404 (Not Found)
GetScripts:1082 Uncaught TypeError: Cannot read property 'unspecifiedClockProvider' of undefined
    at GetScripts:1082
    at GetScripts:1084
common-scripts.js Failed to load resource: the server responded with a status of 404 (Not Found)
Default.js:3 Uncaught ReferenceError: app is not defined
    at Default.js:3
    at Default.js:15
Login:174 Uncaught ReferenceError: jQuery is not defined
    at Login:174
vendors.bundle.css Failed to load resource: the server responded with a status of 404 (Not Found)
account-layout-libs.css Failed to load resource: the server responded with a status of 404 (Not Found)
common-styles.css Failed to load resource: the server responded with a status of 404 (Not Found)

I did follow the instructions as per the development page, but for some reason not all the required resources are downloaded.

Any assistance would be appreciated.

Riaan

@ismcagdas, thank you very much for this. :D I will look into the theme

Hi,

I want to create menu items for the ASPNETZERO CORE MVC/JQUERY Public wesite similar to those of <a class="postlink" href="http://www.aspnetzero.com">http://www.aspnetzero.com</a>.

For example, if the user clicks on the "About" menu item, it should scroll to the About section on the HomePage, same with the "Packages" menu.

Herewith my current FrontEndNavigationProvider. Each menu item is currently its own page (which is working as expected).

//HOME
                .AddItem(new MenuItemDefinition(
                    FrontEndPageNames.Home,
                    L("HomePage"),
                    url: ""
                    )

                //ABOUT - Should navigate to ABOUT section in HomePage
                ).AddItem(new MenuItemDefinition(
                    FrontEndPageNames.About,
                    L("AboutPage"),
                    url: "About"
                    )

                //PACKAGES - Should navigate to PACKAGES section in HomePage
                ).AddItem(new MenuItemDefinition(
                    FrontEndPageNames.Packages,
                    L("PackagesPage"),
                    url: "Packages"
                    )

                //CONTACT 
                ).AddItem(new MenuItemDefinition(
                    FrontEndPageNames.Contact,
                    L("ContactPage"),
                    url: "Contact"
                    )

Thanks in advance,

Riaan

Thanks Matt, for the feedback and solution.

:D

Hi,

Thanks for the reply.

The issue I have is that after the user signs in from the public website (although the publi and admin function as one) he is redirected to the public website after a successful sign in. From the public website, the user can then only sign out. There is no way for him to get to the Admin site unless he changes the url in the browser manually to the admin site url:port. Should one not be able to browse from the public site to the admin site after login, even if redirected to the public site, or am I missing something?

Hi,

I've just upgraded our site to 4.1.4 with the new public website. After logging in form the public website I'm redirected back to the public website. Is this correct? Since the App site is running on a different port, should I not be redirected there after login, or must I do it myself (and how)?

(or is there something wrong with my setup?)

Success !!! Upgraded SQL 2008 to SQL 2014 and the Internal Server Error issue has been resolved. Thanks for the assistance.

Riaan

Showing 1 to 10 of 24 entries