140 comments found.
Hi, is there any support for RTL if you can help me it’ll be better.
hi, i will include rtl version in next update.
when is the next update
in end of this week
Hello,
I am trying to preview the template but it seems to be stuck on the login page while redirecting to the dashboard. It was working some days ago when I previewed it but before buying any template, its better to take another good look. Please check this issue and confirm. Thanks.
Thanks a lot
Hi!
I like your theme very much – great job!
I’ve got only one problem: I want to use the sortable table with search-function etc, but the theme only shows the “Simple sortable table”, after I filled in the data with php-foreach.
It’s curious: If there is no data in the tbody, it shows the sortable table with all functions.
Here are some screenshots:
with data (not working):
without data (working):
code:
How can I fix this?
Thanks in advance
Hi,
Try to change init of .tSortable(plugins.js:256) to:
$("#tSortable").dataTable({"iDisplayLength": 5, "aLengthMenu": [5,10,25,50,100], "sPaginationType": "full_numbers", "aoColumns": [ { "bSortable": false }, null, null, null, null,null]});
Let me know if this will solve your problem.
Thanks
It worked. Thank you, great support!
Thanks
Dont forget to rate my template with 5 stars, if you like it of course 
From all the template you made this one is the best, this on is a real grate work .
thanks for creating creative things.
Thanks, hajjaj 
Hi, please I have problem with add columns – five columns work good, but six no. Specifically – “Sortable table” – when you add another column, so it becomes a “Simple table” – how repair?
Thank you for answer and sorry for my English.
Hi
Example of datatables only for 5 rows. You should create your own init of datatables to each your table, or table type.
in plugins.js:263-267
...
"aoColumns": [ { "bSortable": false }, null, null, null, null]}
...
it means that first column is not sortable(checkbox), and another 4 is default(sorting). So you should create your init of DT for six columns:
$("#yourDataTableID").dataTable({
...
"aoColumns": [ { "bSortable": false }, null, null, null, null, null]
...
});
Let me know if you have any questions
Thank you
I have next questions 
1) How change height “textarea” – I want only two lines (default 4 lines)
2) I used the element ‘bootstrap’. During the long text can not move page – text is hidden (example http://www.cnc-programator.cz/example.png) How add scrolling element?
Thank you for your answer 
1) set to textarea min-height value 50px
<textarea style="min-height: 50px;"></textarea>
2) try to use mcustomscrollbar plugin. In your popup window add:
<div class="modal scrollBox ..." ...="">
<div class="scroll" style="height: 320px;">
...
</div>
</div>
And after open modal, re-render plugin(couse it’s hidden by default):
$('#yourModal').find('.scroll').mCustomScrollbar("update");
<a href="#dModal" role="button" data-toggle="modal">Držák válce</a>
<div id="dModal" class="modal_vykres scrollBox hide fade" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">text text text:</h3>
</div>
<div class="scrollBox" id="box_with_scrool">
<div class="scroll" style="height: 400px;">
<span class="span10" style="text-align:right" />
<span class="span3" style="text-align:right">text text text: </span><span class="span8">Je obecn? známou v?cí, že ?lov?k bývá p?i zkoumání grafického návrhu rozptylován okolním textem, pokud mu dává n?jaký smysl. Úkolem Lorem Ipsum je pak nahradit klasický smysluplný text vhodnou bezvýznamovou alternativou s relativn? b?žným rozložením slov. To jej d?lá narozdíl od opakujícího se "Tady bude text. Tady bude text..." mnohem více ?iteln?jším.</span>
<span class="span6" style="text-align:right" />
<div class="dr"><span /></div>
<span class="span3" style="text-align:right">text text text: </span><span class="span8">Je obecn? známou v?cí, že ?lov?k bývá p?i zkoumání grafického návrhu rozptylován okolním textem, pokud mu dává n?jaký smysl. Úkolem Lorem Ipsum je pak nahradit klasický smysluplný text vhodnou bezvýznamovou alternativou s relativn? b?žným rozložením slov. To jej d?lá narozdíl od opakujícího se "Tady bude text. Tady bude text..." mnohem více ?iteln?jším.</span>
<span class="span6" style="text-align:right" />
<div class="dr"><span /></div>
<span class="span3" style="text-align:right">text text text: </span><span class="span8">Je obecn? známou v?cí, že ?lov?k bývá p?i zkoumání grafického návrhu rozptylován okolním textem, pokud mu dává n?jaký smysl. Úkolem Lorem Ipsum je pak nahradit klasický smysluplný text vhodnou bezvýznamovou alternativou s relativn? b?žným rozložením slov. To jej d?lá narozdíl od opakujícího se "Tady bude text. Tady bude text..." mnohem více ?iteln?jším.</span>
<span class="span6" style="text-align:right" />
<div class="dr"><span /></div>
<span class="span3" style="text-align:right">text text text: </span><span class="span8">Je obecn? známou v?cí, že ?lov?k bývá p?i zkoumání grafického návrhu rozptylován okolním textem, pokud mu dává n?jaký smysl. Úkolem Lorem Ipsum je pak nahradit klasický smysluplný text vhodnou bezvýznamovou alternativou s relativn? b?žným rozložením slov. To jej d?lá narozdíl od opakujícího se "Tady bude text. Tady bude text..." mnohem více ?iteln?jším.</span>
<span class="span6" style="text-align:right" />
<div class="dr"><span /></div>
<span class="span3" style="text-align:right">text text text: </span><span class="span8">Je obecn? známou v?cí, že ?lov?k bývá p?i zkoumání grafického návrhu rozptylován okolním textem, pokud mu dává n?jaký smysl. Úkolem Lorem Ipsum je pak nahradit klasický smysluplný text vhodnou bezvýznamovou alternativou s relativn? b?žným rozložením slov. To jej d?lá narozdíl od opakujícího se "Tady bude text. Tady bude text..." mnohem více ?iteln?jším.</span>
<span class="span6" style="text-align:right" />
<div class="dr"><span /></div>
</div>
</div>
<script type='text/javascript'>
$(document).ready(function(){
$('#box_with_scrool').find('.scroll').mCustomScrollbar("update");
});
</script>
<div class="modal-footer">
<button class="btn btn-warning" data-dismiss="modal" aria-hidden="true">Edit</button>
<button class="btn" data-dismiss="modal" aria-hidden="true">Closed</button>
</div>
</div>
please, contact me with email. i will try to solve your problem. thanks
Poslal jsem email. Thank you for answer.
Answered on it. thanks for waiting 
I have brought this one, but I lost older files.
I want to downlod again, but I didn’t find any link that I bought.
How can I do?
Hi. Right top nav, on hover your nickname – downloads. There you will find all your items.
I have brought some themes before and I feet one of the best theme is this! Aqvatarius is efficient to solve the problems. It is amazing! Also willing to hear the client suggestions and fix it in next updates. Thanks!!
Hope to see you have some good WordPress theme later. 
Thank you 
Maybe in future i will try to create wp theme, special for this template
Hello aqvatarius, was checking my almost final cms i made and with the admin, checking on an iphone by mistake i typed a wrong url so the site loaded the 404 page, just to let you know the errors pages in the template dont fit on responsive view not a big deal but i know you like your template perfect 
Thanks sades, i will fix that in next update 
Awesome template, and so far easy to integrate with my project.
I have the js and css put into specific folders that makes sense in the greater scheme of things but I’m getting a 500 error on this line:
http://static.mysite.org/js/pimms2/plugins/jquery/jquery-1.9.1.min.jsand it appears to be trying to load
http://static.mysite.org/css/js/plugins/plupload/jquery.plupload.queue/css/jquery.plupload.queue.css but this file is actually at http://static.mysite.org/js/pimms2/plugins/plupload/jquery.plupload.queue/cssI’m loathe to go messing with the minified version of jquery. Is there a setting I’ve missed perhaps?
Hi itamer
Please contact me with email(aqvatarius@urk.net), i will try to help you solve your problem.
Thank you for purchase
Thanks for the offer but your email bounced!
Got your email, will anwer asap
Thanks for your help last night, got caught by a small setting which won’t apply to everyone. Can’t believe the detail in this theme! Would happily use this on other projects.
Thank you) Stay tuned.
Hi Aqvatarius,
Thanks for the great work. I used the theme on my asp.net project and it’s fine, but when i click on any buttons and the page goes to server and came back i notes that all the uniform is broken. any solution for that example the radio look and the accordion tabs.
Hi, aminoy
Contact me with email, and i will try to solve your problem. Thanks
Ok i sent you an email.
Hi, i get this template and have some troubles. 1 – in the grid, when I have rows with checkbox, and send a select all with jquery, the checkbox change his property to checked, but shows like unchecked. how can I fix this problem ???
hi
Radio:
$(".yourBox").find("input[type=radio]:checked").parent('span').addClass('checked');
Checkbox:
$(".yourBox").find("input[type=checkbox]:checked").parent('span').addClass('checked');
well, this worked, but now I have another problem. When I check the #checkAll checkbox, the form executes a submit. I have using asp.net MVC3 and dont have idea why when a click in a checkbox item, the form submits.
Sorry, i fix this problem. But, when I change the page of my grid, the checkboxes lost his style. Any idea why this happen ?
I think you should reinit uniform after your actions for your container (uniform inits after DOM load).
Hi again, I searched but didn’t find any tab sample. Is there any? Thank you.
Hi caglaror,
Check ui.html, box tabs. Contact me with email if you have any questions or suggestions. Thanks
Hi Aqvatarius, i am using this wonderfull template and i´m using fancybox to load pages inside, when i use it in chrome there is no problem, but in IE9 when i move the mouse into the fancybox, the back page (parent) change, looks like its apply the responsive css.
I really sorry for my poor english, i hope you can understand my problem.
Hi mash180,
The reason of this problem is iframe that used by fancybox plugin to load page.
I think you should use jQuery dialog or bootstrap modal, and load data wia ajax. It will be faster, and i think this will solve your problem.
Thanks for purchase. If you have any questions, please let me know(by email).
Hi Aqvatarius, Is there any modal dialog box plugin with animation, for example: coming from top ease, and stop middle. There are tons of free but i wonder if any built-in that save me from adopting any free one. Thank you.
Hi caglaror,
Check jQuery dialog please. Option show.
As i know in bootstrap only default animation.
Thank you for purchase.
I implemented blockUI from http://www.malsup.com/jquery/block/#overview Thank you.
Hey Dmitry,
First of all, can’t say enough what a great job you did on this template.. huge time saver and it looks great! Thank You! 
Want to make you aware of a fix I did on my app that you may be interested in applying. You may be already aware that putting a checkbox or radio button inside a bootstrap modal form does not get rendered with the uniform look and feel unless you call uniform again to include the new items, however the checkbox/radio button disappears when you do. For some odd reason, the rendered divs with class “checker” and “radio” receive a style=”display:none;” attribute. Here’s a code I have that fixes this issue, it should go on your plugins.js file:
You can checkout the code here
Let me know if you have any questions..
All the best,
Phill
Hi Phill,
I think i will fix it, and do it more flexible. 
However, thanks for your suggestions. It’s very important for me!
Best regards,
Dmitry
Hello thanks, I sent you email
Hello just purchased this template. Actually, I need only left (side) panel and top header. Is there any easy way to create some body frame and delete all body contents, so when user click on left side panel, it opens my page inside “content”?
Thanks for suggestion
Hi, jasni
I think best solution is use ajax, to load content.
Sure u can add iframe into content, but i think it’s old technology.
Thanks for purchase. If you need help, you can contact me with email, and i will try to help you.
In stylesheet.css you forgot a s at button[s] isb.
Hi, Seazer
Yes, you are right. Thank you for report, and thanks for purchase.
Hi Dmitry,
No pressure or expectations but I was wondering if you have a loose target date for the next update? And if you are planning on including the pnotify notification library in it?
Thanks and keep up the great work!
Hi, pnacelli
You will not believe this, but I am right now working on it 
So, tomorrow i will upload update…
Thanks for the update! I am having an issue though with the pnotify stack. Instead of seeing multiple notifications on going up, they are all being placed on the same x,y coordinate (bottom right) on top of each other. Have you been able to get stacking to work? Please advise..
Thanks,
Hi,
I’ll fix it today…
Fixed. Uploaded new package and waiting for aprove. Now you can check it on theme preview. I will notify you when it will be aviable…
It’s aproved. Now you can get it…
Working like a charm! Huge Kudos and Thank you! 
Stay tuned 
Hello again Aqvatarius, your updates are so cool thanks for making them, i stilll have a question, im trying to add some modals popups like the ones you have here
Default
But my goal is to open inside the popup an html page that has a lot of content is it possible and how can it bee done been checking all the files action, settings etc… but cant find anything referring to the modals popup
Hi, sades
Contact me with email, and will try to help you to solve your problem.(aqvatarius[at]ukr.net/gmail.com)