653 comments found.
Hi Kopyov,
I did some .net script to update flot values automatically. Now i can fetch values from external source and graphs are fine.
I just want to inform about Wizard. Autogrow textarea and select with/without scroll couldn’t extend Wizard area and becomes invisible.
http://img600.imageshack.us/img600/8649/wizardt.pngIs that possible to publish a quick fix?
Thanks.
Yusuf.
Wizard plugin sets fixed height depending on few inputs. I’ll look at it tomorrow, but original source was with fixed height. Anyway i’ll try to fix it
Hi! First of all, great Theme!
I tried to look for the code of , but i couldn’t find. Could you put it here?
Thanks a lot.
Hi. What exactly you can’t find?
Did you download the latest version? I added it on previous update only so please redownload an archive
Hi Kopyov,
I’m working on the charts. I checked your examples and flot examples, but they all have static values. I need to get them from another text file.
So I changed this code:$(function () {
with this one to get data:
$.get('data/cpumonitor.txt', function (content) {
I can get data from txt file with the code above.
cpumonitor.txt file: 0,60 5,10 10,20 15,35
Also I need to create array from cpumonitor.txt file to use it in flot.
I changed:var d2 = [[0.6, 29], [2.6, 13], [4.6, 46], [6.6, 30]];
with this:
var d2 = content.split("\n");
It draws something but not like I expected.
http://img51.imageshack.us/img51/6060/82wmicpu.png
I’ll be glad if you give me some clue.
Thanks.
Yusuf.
Hello,
Nice template =)
I noticed some “bug” not really a bug, but for this to be more perfect i think it needs to be fixed =)
http://easycaptures.com/fs/uploaded/651/4737512707.jpgDo you notice the rounded corners when a submenu is open ? That’s the “bug” i’m talking about
I started working on my backend but i’m wating for the fluid version tbh =D
Hey BrunoG
That’s not a bug, Submenu adds one additional class, so bottom corners stay rounded. It can be solved, but with additional css
Hi Kopyov,
A suggestion here. Jquery Flot Plugin has a bug when you try to render a graph inside a hidden DIV . That is messing with my custom manual menu open calls 
Solution here http://stackoverflow.com/questions/1595993/graphs-from-mysql-to-jquery-flot
Oh, I’m working for a client who bought it from you! Great work by the way.
Regards, Eduardo
Great, thanks, will check it asap 
Hi Kopyov,
Well coded, congrats.
As you are the developer it will be best if you can point me in the right direction:-
Can you suggest any areas where a liquid layout will require JS/HTML changes? I have to go liquid for this project but I’m going to be using your theme in my application prototype because it’s perfect. I have no problem making any layout changes but I don’t want my client to find any surprises for things I haven’t thought to test.
If you can think of anything that may not work nicely please let me know.
Cheers, Lee.
PS: Just a brief rundown, I’m not asking for specifics here. Thanks 
Hi Catskin,
I am working now on liquid layout, i think it will be ready max in 10 days so you can wait a bit.
If you want to go through the code by yourself, for charts you’ll need to use resize plugin for flot and all the changes could be nade in CSS only, if you need to convert it to liquid only. As i am doing both – responsive layout and liquid version, it’ll require some html/js changes, i’ll explain in help file what exactly needs to be changed
Sounds great Kopyov,
I’ll wait for your implementation which will be awesome, but in the meantime I am still going to provide a prototype to my client which will not include any charts, so I’m feeling pretty safe.
I’m very interested in your responsive layout but I’ll wait for you to announce it later 
Thanks for the advice on flot. Good job on this theme too, It’s good to work with.
Thanks, Lee.
As an aside, I look forward to more of your Admin Themes in the future, this is absolute gold!
Hello Kopyov, This is great template, i have purchased today. I have one question: Top drop-down menu that shows on a click,but how hide clicks anywhere on the document?
Thanks.
Thanks for purchase.
Quick fix:
$(document).bind('click', function(e) {
var $clicked = $(e.target);
if (! $clicked.parents().hasClass("dd"))
$("ul.menu_body").hide(100);
});
Place this code in custom.js right after
$('.dd').click(function () {
$('ul.menu_body').slideToggle(100);
});
On the light demo site, the form elements page is not working 
Fixed, was updating some stuff. Thanks 
Hi Kopyov, I like this theme so much. but it would be more nice if you put “lightbox” function on gallery and full screen layout. Then i will buy this theme soon. good work! 
Working on it 
Thanks
Great! Looking forward to it.
Hello Kopyov,
This is an adorable template, nice work!
Few bugs I’ve noticed:
- Contact list is not compatible with IE 9 .0.3.
- If you put less than 5 data into Dynamic table, it doesn’t shrink to expected height. (same on Chrome and IE)
- I like the font but it’s not same on IE 9 .0.3. I hope you will find a way to fix it.
Also one question about charts. I liked “autoUpdate” (Lines with fill). But somehow if I remove first chart, then “autoUpdate” comes blank. I mean:
If I put this:
<!-- Lines -->
<div class="widget first">
<div class="head"><h5 class="iGraph">Charts</h5></div>
<div class="body">
<div class="chart" style="width: 700px; height: 200px;"></div>
</div>
</div>
<!-- Lines with fill -->
<div class="widget">
<div class="head"><h5 class="iGraph">Charts</h5></div>
<div class="body">
<div class="autoUpdate" style="width: 700px; height: 200px;"></div>
</div>
</div>
Both works. But If I just put this:
<!-- Lines with fill -->
<div class="widget">
<div class="head"><h5 class="iGraph">Charts</h5></div>
<div class="body">
<div class="autoUpdate" style="width: 700px; height: 200px;"></div>
</div>
</div>
It doesn’t work. There is a dependency between charts.
I spent a few hours to solve that but no luck. What I want to achieve is putting CPU and Memory usage on panel. I can fill 10 data/value into text file but how can I fetch that from that text file? Is that possible to write an example for CPU graph same as “autoUpdate” version?
My text file is like this example: Y1: 50 X1: 16:45 Y2: 35 X2: 16:50
CPU fetch interval is 5 minutes. But I don’t want to use JSON to get text file. There will be a background job to update text file. If user refresh charts.html page, it will get values again from text file.
Thanks for help.
Yusuf.
Hi Yusuf,
Double checked in IE 9 .0.8 (latest one), everything works fine. During development i oriented to the latest version of IE. But i’ll find the way to check it for IE 9 .0.3. The only thing i missed is letter navigation of the contact list, i’ll fix it in the next update.
1. Contact list is fully compatible with the latest browser versions 2. My bad. Quick fix – find ”.dataTables_wrapper” in “datatable.css” and remove min-height. Also will include this fix in the next update 3. Again, in the latest version font replacement works fine.
Charts
If you’re removing the first chart, remove also its parameters in custom.js file or simply move chart settings to a separated .js file. If you want to keep only auto updating chart, remove all the others parameters and keep only one you need.
Hope that helps
Hello Kopyov,
Is that possible to give a date for update? I’ve downloaded recent update but it doesn’t cover font fix.
Also I’ve removed min-height and it works, thanks.
BTW , my IE version is 9.0.8. Only issue is letter navigation on contact list.
Thanks.
Yusuf.
Yes, it doesn’t cover font fix, because i didn’t see this issue, in IE 9 ,.0.0 everything works correctly.
Don’t know, i think maximum 2 weeks, holidays. Liquid layout is in process, then responsive and then i’ll upload it.
Yep, my bad, missed that issue with navigation. Will post a quick fix a bit later
Hi,
Great template, but i’m wrestling for a few days to get nice looking edit/delete button in the dynamic table ( behind each row), and an add button on top of the table.
This add/edit/ delete is actually a must have for my web app.
I already managed to get the table filled/paged with ajax calls, but really missing those other buttons…
Any hints ?
Hi,
I uploaded an update, added 130+ new color icons. Also there are 2 sizes of usual icons + vector shape sources so you can choose something suitable among 430+ icons 
I am also waiting for your update. Then I will purchase the template.
Loving it!
Kopyov, when the update will be published?
Tomorrow in the morning (EU time), i’m stuck with one feature, still working on it
Hi Kopyov,
When I add jQuery UI to the html source code, I keep getting this error: Uncaught RangeError: Maximum call stack size exceeded. I think maybe there are some conflicts. And when I remove custom.js, the error is gone.
Can you check and fix the problem? Cos I want to use some jQuery UI’s widgets.
Best regards.
Hi.
I didn’t get your issue. In custom.js there are settings for jquery UI sliders. It seems like you’re trying to add already existing widgets Can i see your code somehow?
and I get the error (in Chrome)
Could you please send me a link to your page via contact form on my profile page so i can check?
As far as i understood, you added the same code to the page. You don’t need to add any code from jquery UI, it is already added. All you need to do is to set parameters in custom.js file for you widget
ah, so you mean there’s already jQuery UI in your code? silly me
cos I don’t see any script tag for jQuery UI inside the html, so I thought you don’t use jQuery UI, and I tried to add it to the html source.
well, I find out that you use google api for jQuery UI. Thank for your time, and quick response.
Yeah, it is already added (check line 15 in html code on each page) and spinners, sliders, progress bars, dialog windows are based on jquery UI 
Hi, Great theme ! I’m using it and it’s great.
But any clue how I get the dropdown in the Dynamic table in the correct style (like all dropdwon lists ?)
Hi.
Thanks!
I haven’t planned it, because styled dropdown menu is much higher than the usual one, so bottom of the table will be bigger in size, so i removed styled dropdown from dynamic table
By the way Would you add pricing table?
I think i’ll include it into one of upcoming theme updates
hey
i have purchased this item and now realized that the theme dont have the opportunity to upload a single file.. ;c
Don’t worry, i already added this feature, it’ll be uploaded with the next update tomorrow 
Would have paid triple without a blink!
This is exactly what an Admin/backend theme should look like in my opinion – clean, simple, intuitive and clutter-free – focussing on the task and data at hand.
Also it feels more like I bought a collection rather than a single item – I’ve never seen such a feature-rich template where every feature makes sense and does not break with styling and design!
BRILLIANT – bought, subscribed and waiting for more awesomeness
Thanks alot, you’re a champ!!!
Thank you so much 
Quick question: I am currently developing an application in .NET and would like to use this template. I noticed that PHP files are included in this template. How reliant is this interface on those PHP files? Can I easily replace the functionality that exists on them?
Outside of that, the template looks amazing. Great work!
Hey Splinter.
There are 3 .php files – 1st is a simple php connector, 2nd is file upload settings, 3rd is file manager settings. So actually if you don;t need file manager and multiple file upload, you can remove them 
Could you let us know where the icon set came from and/or provide the vector source? I would like to use some larger versions.
Also looking forward to the liquid version.
All icons are in photoshop vector shapes, just open them in photoshop and resize to the size you need