754 comments found.
Could you add me to bitbucket repo, my bb’s username is : orzcc
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!
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
Lovely, work perfect. Many thanks Arlind!
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
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=0Please 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=thumbnail2. 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.
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.
Thanks thats very useful for me
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?
Look first at the Selectbox replacement, SelectBoxIt (your demopage) at http://www.vlntn.nl/boxed/forms-advanced.html, and look at the same page with just added 1 line of code (datatables.js insert) at this page http://www.vlntn.nl/boxed/forms-advanced2.html. In the second the SelectBoxIts are gone…
Hi lrnsvlntn
The problem is that the SelectBoxIt we currently include in our theme is old version.
I tried to include the new SelectBoxIt version and worked fine, but the styling is broken. So I am going to fix this but currently I am not able to do this. In January I will fix this issue because I will leave for vacation in a week.
Hope for your understanding.
Ok, thanks for your answer. I will wait for the update. Have a nice vacation!
Did you get time to update the SelectBoxIt plugin?
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>
Or if there is a way where i can User the “Header / Logo” with the Left Sidebar and then also have the fixed navbar on top?
P.S
<script src="assets/js/datatables/datatables.js"></script>conflict with the Class
<div class="sidebar-menu fixed" />
When the datatable.js is being called on a page where sidebar-menu fixed is being used it mess up the sidebar.
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.
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 classfixed 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/RosrInstead of top: 0; it was declared ad bottom: 0 thats why it didn’t worked.
Thanks for reporting this specific bug.
Hi ! I’m french and I would like buy your theme but in “front end” page,menu is full open with my iphone. Bug ?
it’s on the menu => http://www.sepabet.com/web.png & http://www.sepabet.com/iphone.png
It is possible to have the same rendering web/mobile ?
Thank you for your quick answers
Thank you ! Now… Work ! 
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.
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/17HE5Can 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.
see this link https://www.dropbox.com/s/ytyl7yvhdw1t7of/safari.jpg?dl=0 Thanks
Hi
I’ve tested this issue in Safari and works fine, see screenshot:
http://drops.laborator.co/1k6JDPlease make sure you are including required JavaScript libraries (select2):
http://drops.laborator.co/1aba0It should work when these libraries are present in the document.
I am attaching link for selectbox screen shoot, Its not working on safari, Kindly help here how we fixed?
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,
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.
Thanks that work for me
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.jsAnd 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
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
Thank you! Works fine!
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.
Thank you very much