nopCommerce
  • Product
    • Store demo
    • Showcase
    • Features
    • Why for developers
    • Why for store owners
  • Downloads
    • Download nopCommerce
    • Marketplace
    • Translations
    • Copyright removal key
  • Support & services
    • Documentation
    • Community forums
    • Premium support services
    • Request a quote
    • Contact us
  • Partners
Back
  • Product
    • Store demo
    • Showcase
    • Features
    • Why for developers
    • Why for store owners
  • Downloads
    • Download nopCommerce
    • Marketplace
    • Translations
    • Copyright removal key
  • Support & services
    • Documentation
    • Community forums
    • Premium support services
    • Request a quote
    • Contact us
  • Partners
  • 0
    • Log in
    • Register
Get started

Profile: sanju.dahal741

  • Profile Info
  • Latest Posts
sanju.dahal741
Certified Developer
Statistics
Nepal
90
800
Tuesday, March 28, 2017 11:06 AM
Send private message
page layout not working
Your URL suggests you are in the admin area. Have you decorated your controller with the area attribute? Try removing the area attribute and see if the styles get rendered properly.
[Area(AreaNames.Admin)]
13 hours ago
page layout not working
Nope53 wrote:
Hi, This page is not meant as the configure page. but for a page by itself.

Sorry, I think I misunderstood your question. I have edited my answer. Please check and see if it is helpful.
13 hours ago
page layout not working
Looks like you are on the admin area and you are using the layout used in public portal. You have to use either
Layout = "_ConfigurePlugin";

Layout = "_AdminLayout";

as the layout in the admin section.
14 hours ago
Source Code Accessiblity
NopCommerce is licensed under the nopCommerce Public License. You do not need to make the source code publicly accessible. The only thing you can not do is change the "Powered by NopCommerce" text at the footer without buying the copyright removal key. For more information check:
https://www.nopcommerce.com/boards/topic/24990/license-conditions-for-website-developers
https://www.nopcommerce.com/license
1 day ago
Timepicker for DateTime field
You can create an editor template to achieve this.
Create an editor template named TimeNullable.cshtml inside the editortemplate directory where the other templates are located. Use this code

@model DateTime?
<input id="@Html.IdForModel()" name="@Html.NameForModel()" value="@(Model > DateTime.MinValue || Model.HasValue ? Model.Value.ToShortDateString() : null)" />
<script>
    $(document).ready(function () {
        $("#@Html.IdForModel()").kendoTimePicker({
            dateInput: true
        });
    });
</script>


and decorate your property name with
       [UIHint("TimeNullable")]
        public DateTime? StartTime{ get; set; }

This should be it. I have not tried it in 3.9 but it should be similar to this
1 day ago
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next
  • Last
Product
  • Get started
  • Store demo
  • Showcase
  • Case studies
  • Features
  • Why for developers
  • Why for store owners
Download
  • Download nopCommerce
  • Marketplace
  • Translations
  • Release notes
  • Copyright removal key
  • License
Support & services
  • Documentation
  • Community forums
  • Premium support services
  • Request a quote
Community
  • Contribute
  • Certified developer program
  • MVP program
  • Blog
Partners
  • Solution partners
  • Technology partners
  • Recommended hosting
  • Become a partner
Company
  • Advertise with us
  • About us
  • Contact us
  • Facebook
  • Twitter
  • LinkedIn
  • YouTube
  • Instagram
Copyright © 2008-2019 nopCommerce. All rights reserved. Privacy policy