754 comments found.
Hi there, with the newest release the Flash CSV/XLS downloader along with the tables seems to not function. Any way to debug? Or is there something obvious I should be looking for? (NB It worked in the previous version).
Thanks!
Actually don’t worry about it – your help explains it – I had forgotten I had changed the path in the previous version
Great you fixed it.
Art
It seems that the sliders aren’t working very well. See @ -> http://demo.neontheme.com/forms/sliders/
I’m playing with the horizontal slider with input text (data-min=0 data-max=1800 ) and can’t go till 0 or 1800 while sliding.
And it changes the min and max value while I’m playing with the slider.
I’m using Chrome Version 34.0.1847.131 m
Any thoughts?
Great theme though… Well done my friend!
I got the your theme yesterday so I suppose I’m using your latest version…
Hi apostolos,
Thanks for reporting this issue and your kind comments, I have managed to fix it and download the fixed file: http://cl.ly/VRsg
Replace to assets/js/ folder and the slider will work normally.
Arlind
Thank you!
You’re welcome, anytime
.
I’m adding a chat message on ‘receive’ event of a websocket however I don’t know how to update ALREADY OPEN CHAT WINDOW. I add the message like this:
neonChat.pushMessage( ‘user_’ + user_sender, message, name_sender, new Date(), true, true);
How can I update the open chat window so I can actually see the received message? Currently I close and reopen the current window.
Hi herrkaleun,
When calling neonChat.pushMessage it automatically updates the current chat window.
I am not sure if I understand you properly?
Arlind
Well in this case it does not. When I “pushMessage” a message the window is not updated
Can I email you about this?
Hi herrkaleun,
I will test this issue later today and when I fix I will send you the neon-chat.js file with fixes.
However you can email me here: arlindd at gmail so I can forward you the files.
Arlind
I’m still waiting 
Hi herrkaleun,
I am posting the fix here, so you have to download this file and replace to assets/js/ folder:
http://cl.ly/VUJJAnd then when sending a message, just add an extra line to render messages of currently opened chat:
neonChat.open("#sample-user-123");
neonChat.pushMessage("sample-user-123", "Hello buddy!", "Arlind Rrushi", new Date(), true, true);
neonChat.renderMessages("sample-user-123");
Hopefully this will help you, it worked for me.
Arlind
Hello, Using Neon Theme, in a form, I try to make a conditional display of a text input, depending on if a toggle button is checked or not : if the toggle is checked, then I want the input field to be displayed. Is anybody can help me ? Thanks a lot.
Hi mchabeaud,
Sure, here is sample code for that:
<div class="checkbox checkbox-replace">
<input type="checkbox" id="sample-checkbox">
<label>Checkbox 1</label>
</div>
<input type="text" class="form-control" id="sample-input" placeholder="Placeholder">
<script type="text/javascript">
jQuery(document).ready(function($)
{
$("#sample-checkbox").change(function(ev)
{
ev.preventDefault();
if($(this).is(':checked'))
{
$("#sample-input").show();
}
else
{
$("#sample-input").hide();
}
});
});
</script>
Arlind
Thank you so much. Very useful. But, if I want this function take into account the default value of the checkbox, when open the form, what should I do ?
Very nice chat API. It will be the template to our chatting system using websockets.
Excellent work!
Thank you herrkaleun.
Art
Sorry for adding another post, how can i have a fixed bottom footer?
THanks
Hi swamyveera, we’re sorry the fixed bottom footer is not available in Neon, we have planned to include this feature in the upcoming updates.
Arttt
Hi, How can we make the top menu clickable, rather than hover&expand?
Thanks
Hi swamyveera,
The top menu works only with hover events, I tried to make it with click events, but it requires different way of implementation and takes some time to develop it. We will consider adding this feature in the next update.
Arlind
Hi, Thanks for considering the request.
You are welcome, thanks for purchase.
Hello, could send me the main file so I can see how it was done and how the program is structured folders? I decided to buy the theme after this review!
Thank you.
Hi kminformatica,
Sure, I will give you this information.
The files you get: http://cl.ly/VNO6 Inside structure (assets organizing) http://cl.ly/VMtq Index file: http://cl.ly/VM72Hopefully this will create you an idea how its organized.
Arlind
Perfect! That was exactly what I needed! I think I’ll buy the same theme. I will create another account on my private email and purchase it at ThemeForest! Thank you very much.
Many thanks 
Hi, we have created a form with multiple drop down fields. The reset button shown in “Data validation” example does not reset drop downs (selects). What would be the correct approach to reset the form entirely? Our idea is to have a form with ajax submission and to be able to create many items without refreshing the page (form reset after successful submit).
Hi elesus,
If you are using Select2 plugin, you can easily reset the value of it simply using its own API, here is an example:
// Call this statement in an event
jQuery("select").select2('data', null);
If you are using SelectBoxIt plugin then execute this statement:
jQuery("select").data("selectBox-selectBoxIt").refresh();
And you are done with it. One suggestion is before calling these functions, make sure you clear (unselect) the value of select/dropdown box (example jQuery("select").find('option').attr('selected', false);) if needed.
Hopefully this will solve your issue.
Arlind
Hello,
http://demo.neontheme.com/ui/modals/Long modals don’t scroll to the bottom on chrome – http://i.imgur.com/ETwALr2.png
This was fixed by removing perspective: 800; property from neon core css
Hi faisalah123, sorry for being late, and thank you for sharing the fix.
Art
Not work Simple WYSIWYG Editor in the forms-wysiwyg.html…
Please check!
Thank you..
Hi joonpa, I just tested the Simple WYSIWYG editor on Chrome – Mac OS and it worked fine for me except the text color picker, what bugs have occurred on your screen?
Art
less files included?
Hi kminformatica, the theme includes LESS files and CSS compiled files, you can choose which ones to use.
Art
Is it possible for both the top and side menus to be visible when viewing on a mobile? Currently, the side menu disappears and only the top menu is displayed.
Thanks Robbie
Hi Robbie, unfortunately for now Neon only supports the top menu on mobile, we have not planned to release a left menu or use both menus on mobile yet.
Art
http://www.screenr.com/RbhN
Hi IgorA100,
The reason why they overflow from the container is because once they are generated at certain width they will remain the same size even if the browser is resized. You can try for example if you resize the window, then click F5 (refresh) you’ll see that graphs will be normally rendered.
Thanks for noticing this 
Arlind
Thank you !
No problem 
Good day!
Is it possible to fixed the left vertical menu while scrolling page?
Art.
Hi guys
Just adding some tiles to a page and having a button at the bottom of them like in your example file. However if I add a green button, for example, the button still shows the same colour as the tile and the green is switched to the rollover.
Is there a way to show the green button on the actual tile?
Thanks
Hi wayfresh
Unfortunately the tiles are styled based on the main color, so if you want different button color, I recommend using custom class and overwriting it.
Arlind
Hello there! First I would like to thank you for the awesome theme and framework! Really helpful.
I was really wondering how to get started using the calendar. The app I’m working on is designed to populate the calendar with pre-existing data from the server-side. Any hint on how to get started?
Thanks in advance
Hi msarabi95,
Firstly, thanks for your kind words we really appreciate them.
The calendar can be pre-populated with events using this form of declaration:
http://cl.ly/VEjyIn Neon theme you can find this file here: assets/js/neon-calendar.js
Hopefully this makes sense for you.
Arlind
How can I get the values of the Calendar or Slider upon form submission, since they are in DIV tags and not form fields?
Hi evolution,
1. If you need to get infos from the calendar (Full Calendar plugin), you have just to use its own API for the date management, here is the documentation for it:
http://arshaw.com/fullcalendar/docs/2. In this case, if you want to store the value of slider you can do it by adding a callback function: http://cl.ly/VEMN
Or using other method:
<div class="slider" data-min="0" data-max="1800" data-value="223" data-fill="#sample-field" /> <input type="hidden" id="sample-field" value="" />
Hopefully this helps you.
Arlind
Hi there,
There seems to be an issue with the Fixed Sidebar in Google Chrome, I have tested in all other browsers and all seems fine.
The problem in chrome is when you collapse and expand the side bar, a blue border is displayed. Please see the image below.
Tried to add additional css to remove the outline, but I am having no success.
Looking forward to your response, and any assistance.
Regards, Jono
Hi Jono, we have also faced this issue and we’re trying to fix it ASAP, we will notify you when we fix it as we didn’t succeed.
Art
