Discussion on Neon - Bootstrap Admin Theme

Discussion on Neon - Bootstrap Admin Theme

Cart 5,189 sales
Well Documented

Laborator supports this item

Supported

This author's response time can be up to 1 business day.

754 comments found.

Could you add me to bitbucket repo, my bb’s username is : orzcc

Hi orzcc,

We don’t use bitbucket for Neon, we use it for Xenon only.

Kind Regards,
—Ylli

Hola , tengo una duda , para la implementación de inbox ( email) hay que usar alguna librería externa?, solamente veo código html y poco más , tampoco nada en la documentación , o el tema se limita a estructura y estilos? Gracias por adelantado

Hi mayurkis,

Can you please write on English please?

Kind Regards,
—Ylli

Hi!

Is there a way to add extra icons to the Entypo CSS?

Looking at http://www.entypo.com/ I would like to use the “credit” icon, but this can not be found on the listed icons at http://demo.neontheme.com/extra/icons-entypo/

Thanks and Merry Xmas :)

Hi tuleby,

We use old Entypo icons there, you can find the icons on this link Character Map

Happy Holidays to you too :)
—Ylli

Hi!

We are using “layout-horizontal-menu-fluid.html” as the template

Two questions:

1. Viewing on desktop: How can we control the slide / fade effect of the sub menus? We would like to remove/decrease the slide and make the fade a bit faster

2. Viewing on smart phone: See http://imgur.com/dkFlscp. With our (higher) logo the mobile navigation starts just under it, without any space to the separator. Where in the CSS can we increase the space to the menu below?

Thanks

Hi

1. Open this file: assets/js/neon-custom.js and change the parameters — http://drops.laborator.co/15z8C

2. Please add this Custom CSS it will fix your issue:

.horizontal-menu .navbar .navbar-brand {
    height: auto;
}

Best regards

Arlind

Lovely, work perfect. Many thanks Arlind!

Hi tuleby,

Glad to hear those worlds :)

P.S: It would help us a lot if you could rate Neon on themeforest from your Downloads tab, (if you don’t know how, just open this link) Thank you!

Happy Holidays :)
—Ylli

I have an issue when the pages are accessed via mobile phone. A part of the layer which displays the list of alerts, tasks and notification goes out of the screen towards left hand side. I need to get this rectified.

Thank you. Nirmal

Hi Nirmal

For this you need to apply media CSS to adjust the popup to appear in the screen, play with “right” css property for example::

@media screen (max-width: 480px) {
   selector-rule-to .element {
     right: -200%;
   }
}

And so on.

This should work for you.


Arlind

Hello there,

Kindly check it below link, I am facing 2 problem in window Safari browser.

1: Cropping image not show. 2: After upload image thumb not show.

https://www.dropbox.com/s/gsxvko5wlbsgkey/mac.jpg?dl=0

Please let us know how we will fixed it.

Hi raslam

1. If you are using jCrop library then you need to read this tutorial which tells you how to create thumbnail and show it instantly:

http://deepliquid.com/projects/Jcrop/demos.php?demo=thumbnail

2. It might be an old version of Fileinput plugin that doesn’t work fine, so please download the library here (fileinput.js file and move to assets/js/) folder, and see if that solves the problem with Safari.


Arlind

Hello sir, can you give me example like a file php code about how to save, edit and delete using modal. Like in this pic http://albumizr.com/a/rKY Thanks a lot

Hi yudin2

When you are on modal, and have a form to submit you must do this via AJAX (preferred form) and so this is a small example:

<form method="post" id="my_form">
    <input type="text" name="first_name" id="first_name" />
    <input type="text" name="last_name" id="last_name" />
</form>

And the JS for this should be something like this:

<script>
    jQuery( document ).ready( function( $ ) {

        $( '#my_form' ).submit( function( ev ) {
            ev.preventDefault(); // Disable form from being submitted and refreshing the page

            // Do the validation here

            // Then send the data to the server
            var data = {
                first_name: $( "#first_name" ).val(),
                last_name: $( "#last_name" ).val(),

                add_user: true,

                // and so on... send information
            };

            $.post( "ajax-process.php", data, function( response ) {
                if ( response == 'success' ) {
                    // do something
                } else {
                    // warn user
                }
            } );
        } );

    } );
</script>

Then in ajax-process.php the code should look something like this:

<?php

if ( isset( $_POST[ 'add_user' ] ) ) {

    $first_name = $_POST['first_name'];
    $last_name = $_POST['last_name'];

    // Add those values to database...

    if ( "values are successfully stored in database " {
        echo "success";
    } else {
        echo "failed: some reason here";
    }
}

This is the simple form of adding/editing/deleting/completing a task or doing something else from ajax.


Arlind

Thanks thats very useful for me

Hi yudin2,

Glad to hear that :)

P.S: It would help us a lot if you could rate our item on themeforest from your Downloads tab, (if you don’t know how, just open this link) :)

Kind Regards,
Arlind

It seems there is a conflict in the JS if I want to use Data Tables and Advanced Form Plugins? Page is working fine, but if I add a data table my select boxes aren’t visible anymore?

Hi lrnsvlntn,

Thank you very much, have a nice holidays :)

Best Regards,
Arlind

Did you get time to update the SelectBoxIt plugin?

Hi

Actually we are still busy with other updates. However can you please write next week (on Wednesday) I will have more free time and will take care of this.

Kind regards and have a nice weekend

Arlind

I am having trouble with mobile menu. Let me explain in detail, So i am using “Mixed Menus” So i have the navbar with fit logo and the left side bar. My navbar doesn’t have any menu items but some values like Logout and Servertime etc. So now in the mobile version when i try to expand the menu it shows me the items those exist in the navbar. But i need it to show me the items those exist in the sidebar.

So how can i use this code to show me the sidebar menu in mobile version while i am using the mixed menus ( Top Navbar + Left sidebar )

<!-- mobile only --> <li class="visible-xs"> <!-- open/close menu icon (do not remove if you want to enable menu on mobile devices) --> <div class="horizontal-mobile-menu visible-xs"> <a href="#" class="with-animation"><!-- add class "with-animation" to support animation --> <i class="entypo-menu" /> </a> </div> </li>

Hi harryytt

To show sidebar menu instead of navbar menu, open neon-custom.js and on line 92 replace that function with the below one:

// Mobile Horizontal Menu Collapse icon
public_vars.$horizontalMenu.find(".horizontal-mobile-menu a").on('click', function(ev)
{
    ev.preventDefault();

    var $menu = $('#main-menu'),
        with_animation = $(this).hasClass('with-animation');

    $menu.toggle();
});

It should work as you expected.

As for data table, can you please try to find a fix and send it to us, I am not sure how to reproduce this issue.


Arlind

Hi Laborator,

Thanks alot for the reply.

As far the data table, You can reproduce the issue in the following ways

1. Open file tables-datatable.html from demo files and add the following class fixed in line 40 so it would look like
<div class="sidebar-menu fixed" />
Or simply replace line 40
<div class="sidebar-menu" />
With following
<div class="sidebar-menu fixed" />
2. Open file layout-fixed-sidebar.html from demo files and add the following
<script src="assets/js/datatables/datatables.js"></script>
at line 1312.

Hi harryytt

I’ve found the solution to this:

@media screen and (min-width: 768px) {
   .page-container .sidebar-menu.fixed .sidebar-menu-inner {
      bottom: auto;
      top: 0;
   }
}

Or download this file: http://drops.laborator.co/13f8U+ and move/replace in assets/css/

The problem was here:

http://drops.laborator.co/Rosr

Instead of top: 0; it was declared ad bottom: 0 thats why it didn’t worked.

Thanks for reporting this specific bug.


Arlind

Hi ! I’m french and I would like buy your theme but in “front end” page,menu is full open with my iphone. Bug ?

Hi slaigue,

You must edit CSS file for that.

Kind Regards,
—Ylli

Thank you ! Now… Work ! ;)

Hi slaigue,

Glad to hear that :)

Kind Regards,
—Ylli

Hello sir, i have purchased your theme today, and used the horizontal menu and datatable. Now my menu are not working and checkbox is also not showing can you tell what is happened? http://merohamro.com/rems/user.php Error: TypeError: $item.hoverIntent is not a function Source File: http://merohamro.com/rems/assets/js/neon-custom.js I have bought with id bipin_longtail

Hi bibil1986imns,

Can you please post with the account you bought the theme, this way we can verify that you’re a real customer as we do not offer support to users who doesn’t have “Purchased” badge.

Kind Regards,
—Ylli

Hi thank for the suggestion, i am a developer, and my boss bought this theme. he gave me the purchase code is : bc3d3920-b4fe-4663-b3cf-60d49180486e well no problem i have solved with my effort, you have add the jquery in datatable as well,so it is loading jquery2 times so it is not taking the hoverIntent.

HI there,

I’m sorry but we are not allowed by Envato to give support to the users who don’t have purchased badge.

Hope for your understanding :)

Kind Regards,
—Ylli

check this http://smartideaz.net/sample_folder/ and resolve this issues

Hi raslam

When checking your console I’ve noticed these issues (scripts that are called but the URL is wrong or does not exists in your server at all:

http://drops.laborator.co/17HE5

Can you please fix these URL and see if the problem is solved.

P.S: I saw that you have created some other tickets, can you please try to add all your questions in one thread, because in this way is easy for us to understand what you have done and what is left, also is would be easy for you to post in one thread.


Arlind

Hi

I’ve tested this issue in Safari and works fine, see screenshot:

http://drops.laborator.co/1k6JD

Please make sure you are including required JavaScript libraries (select2):

http://drops.laborator.co/1aba0

It should work when these libraries are present in the document.


Arlind

I am attaching link for selectbox screen shoot, Its not working on safari, Kindly help here how we fixed?

Hi rslam

Just replied to your thread here:

http://themeforest.net/comments/11717604


Arlind

this my perchase code 3981913729 1. We age unable to select drop down fields by using jquery for data validation and also unable to update the field list by using jquery AJAX. 2. We are unable to lock field for input as number as well.

Hi rslam

Just replied to your thread here:

http://themeforest.net/comments/11717604


Arlind

Hi,

We are using Neon theme with Liferay Portal 6.2. We have integrated Neon theme in Liferay but we are facing some issues with Bootsrtap.css versions. Liferay is using bootstrap.css version 2.x version and Neon theme is having bootstrap.css version 3.x. Because of that, many of the UI is getting disturbed. So, can you provide some pointers to resolve this issue or it would be better if you can provide new neon theme which is compatible with Bootstrap 2.x.

Thanks.

Hi nikhil_liya

We are only able to support Bootstrap 3 for Neon, as Bootstrap 2 has complete different implementation and class names which will cause a lot of complexity to implement.

Base version of Bootstrap that will be supported on Neon is just Boostrap 3, v4 and other versions will not be supported. If Neon with Bootstrap 2 was supported it would be sold as separate item.

I am sorry to say that!

Can you ask if “Liferay Portal” can upgrade to Bootstrap v3, because Bootstrap has dropped support for v2 since v2.3.2 version.

Hopefully you can understand us.


Arlind

Hi yudin2

To change the modal position simply add this CSS:

.page-body .modal-dialog {
    margin-right: 30px;
}

Just sent the same answer to your email.


Arlind

Thanks that work for me

Hi yudin2,

Glad to hear that :)

Cheers!
Arlind

Hello, first let me say this is a great theme, and the new v2.0 has solved quite a few issues.

However, I’m getting an error/conflict (“Uncaught TypeError: $item.hoverIntent is not a function”) in “neon-custom.js” at line 1715 when I use “datatables.js” in a layout with horizontal menu (e.g. layout-horizontal-menu-boxed.html). I’ve compared the files and it seems I get the error as soon as I include the “datatables.js” script.

Any thoughts?

TIA, -martin.

Hi Martin

I’ve checked which file contains this jQuery function and it is located in this file:

assets/js/joinable.js

So make sure you are including this file from the latest version of Neon. If that doesn’t solve your issue, please download this library here:

http://cherne.net/brian/resources/jquery.hoverIntent.js

And import in your document (not in the header, but in footer):

<script src="http://cherne.net/brian/resources/jquery.hoverIntent.js"></script>

It should solve the issue.

Best regards


Arlind

Hello, have you API manual for this theme?

Each time I spend your time for the simple questions…

How can I activate scrollable ?

I Try jQuery(‘mr_vai_sc’).slimScroll();

Exception: slimScroll not a function…

My DIV is
<div id="mr_vai_sc" class="scrollable" data-height="200" data-scroll-position="right" data-rail-color="#777" data-rail-opacity=".9" .......="">

</div>

Hi Dimetreus

Neon has actually an API but it is not briefly explained.

The most elements that are implemented are external libraries and so we didn’t provide documentation about them, you can search for each library and you will find their implementation instructions.

All the examples contain their explanation inside how they are implemented.

Also about slimScroll I have used it but I do not prefer it anymore, I have found a better and easier plugin to work with, its called Perfect Scrollbar:

https://noraesae.github.io/perfect-scrollbar/

Try using this plugin, it is amazing.

Best regards


Arlind

Thank you! Works fine!

Glad to hear that :)

Kind Regards,
Arlind

Hi, I add button with tooltip as dinamically html, how can I activate button?

el.innerHTML = ’<button type=”button” class=”btn btn-primary tooltip-primary” data-toggle=”tooltip” data-placement=”top” title=”” data-original-title=”Tooltip on top”>Tooltip on top</button>’;

Thank you.

Hi Dimetreus

Right after you append that element, you can activate tooltip with this code:

el.innerHTML = ’<button type=”button” class=”btn btn-primary tooltip-primary” data-toggle=”tooltip” data-placement=”top” title=”” data-original-title=”Tooltip on top”>Tooltip on top</button>’;

// After above line add this code:
jQuery( '[data-toggle="tooltip"]' ).tooltip();

This should work.


Arlind

Thank you very much

Glad to hear that Dimetreus :)

Cheers!
Arlind

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey