140 comments found.
Before buying a template we need to trail your product. Is it any possible option to use Aquarius – responsive admin panel for trail purpose before buying?
Hi, unfortunately no.
Hello , I need to height more the header , please how to ?
Hi,
All you need is set:
.header{
...
height: 50px;
...
}
.menu{
...
margin-top: 50px;
...
}
.content{
...
padding-top: 50px;
...
}
50px is your new height
hello admin i want to create a pie chart . the data is coming from database. can u tell me how to send my data to ur charts.js file. if($(”#chart-3”).length > 0){ var data = []; for( var i = 0; i < 5; i++) data[i] = { label: “Series”+(i+1), data: Math.floor(Math.random()100)+1 }; if($(”#chart-3”).length > 0){ var data = []; for( var i = 0; i < 5; i++) data[i] = { label: “Series”+(i+1), data: Math.floor(Math.random()100)+1 }; how to send data to this class that can create different pie charts for different reports pages.
$.plot($("#chart-3"), data,
{
series: {
pie: { show: true }
},
legend: { show: false }
});
}<?php echo $report; ?>
We don’t provide support for users, who don’t purchase my template.
Hi, My client Bought This Theme. I have faced small issue. “placeholder” Not working in IE7, IE8, IE9 How to fix. placeholder is important in site.
Hi, placeholder is not supported in this ie versions. You can use jQuery placeholder plugin.
It’s simple and easy in use plugin.
Thanks. I have faced other issue. default blue color theme ie working fine. but other color themes left menu bg not working. please help me.
ie7, ie8 some issue your demo also. thanks
How do you add data to the pie chart? I know the code is in the js/charts.js file and I am thinking the code that I would need to alter is
[code] if($(”#chart-3”).length > 0){ [/code]
var data = [];
for( var i = 0; i < 5; i++)
data[i] = { label: "Series"+(i+1), data: Math.floor(Math.random()*100)+1 };
{
series: {
pie: { show: true }
},
legend: { show: false }
});
$.plot($("#chart-3"), data,
}
how ever I do not know how to alter it so display the data I want it to display? Do you have a tutorial anywhere I do not see anything in the documentation.
Hi,
Check documentation. Also if you need more information, contact me with email.
Hi, My client purchased this theme. there is small issue.
1) “ui.html” page how to add popup window movable function “Bootstrap popup dialog windows”
2) jQuery dialog windows popup window movable function working but that is not responsive position. i need help
thankyou.
Hi,
1:
$("#yourModalID").draggable({
handle: ".modal-header"
});
2: You mean the y-axis?
Please can you solve this issue.
re-size the screen to 800 by your full screen height .go to this page
http://aqvatarius.com/themes/aquarius_v17/wizard.htmland then click the menu icon to show it after that try to open all closed menu, if the menu cross down and pass the screen height it’ll blank and you can not get it back. I hope you understand me.
ping !
Hi,
Try to remove this part of code in actions.js:233
if($("body > .content").css('margin-left') == '220px'){
if($("body > .menu").is(':hidden'))
$("body > .menu").show();
}
This will solve your problem…
Hi, i try to modify and copy radio buttons from forms samples. Bu i couldnt success. I copied all the outer div, but nothing changes. Can you give a simple and has only three radio buttons example? Also is there any js prerequests more then other usual pages of panel? Thank you.
Sorry but the situtation changed. The outer div is in a modal. So radio buttons are somehow not css rendered after page loads. The search button like action triggers the modal. I think radio buttons in modal couldn’t html (css) rendered. It is stil a problem for me.
Hi, thanks for your report. I will check it today and send answer(or fixes) to you.
Where you find white icon ? I need a icon white wrench ..
Thanks 
HI, made it in fireworks) If you need help with it contact me with email
Hello, i have some trouble with “Select2 multiple” field to getting selected values. Could you please give an js example to get multiple selected values? Thank you.
Hi,
$("#yourSelectID").val();
or
$("#s2_2 option:selected").each(function(){
alert($(this).val());
});
Thank you, i used classical for loop before your answer. Yours are prety much practical then mine.
Hi very nice template. If I want to get more levels navigation, what should I do? Such as third-level navigation, the fourth level navigation. Thanks!
Hi, thanks. Unfortunately there no ready to use third-level nav. I will include it in next update. If you need help to do this, i can help you(contact me with email)
- fixed layout: true How can I do this?
Hi medianetx
Add to .wrapper 2 classes:
<div class="wrapper silver fixed"> ... </div>
Remove from all pages file settings.js
Hi, Will there be an update for IE 10….
Thanks
Hi, IE 10 will be fixed in next update. Thanks for your response.
Any idea when is the next update that you promised 
Hi, alredy was
And i forgot about your suggestion:(. I will include RTL support in next updates. Sorry
Hi I would like to buy your template, I just have one question. Does it come with forms and database connection and insert templates?
Hi, no. There only html/css/js files, and few php connectios for some plugins.
Hello again how can i display the validation requiered for Input file fields? thanks
Hi,
try to open uniform.default.css:608
find div.uploader{...}
and remove OVERFLOW: HIDDEN
And use default class=”validation[required]”
Thank you very much for the Aquarius template!
There is one thing I am missing: a form element with Combo Box functionality – i.e. essentially a text entry element with attached select list, which would allow not only to select an item from the attached list, but also to input arbitrary text – any text, not just one of the select list labels.
I would appreciate any suggestions on how such a control could be implemented.
I doesnt found any examples in web, but i understand what u need….
Did u know any plugin which i can include in template?
The main problem in this, is values of new option in list.
After added new item in list, it must have an value. So, there two ways to solve it.
- Open dialog with 2 fields(name, value), and on submit add it in list.
- Use one text field, near(or on/in) list, and on submit send this name via ajax to server, generate some value(database id, etc.), and return in to front and add this with name into a list.
If you have some examples, or know any plugins for it, let me know and i will include it. Or if not, i will try to do somthink like that.
Thank you for your reply.
Adding entered value to the select list is common suggestion. I have an implementation of this idea made by one of my colleagues.
What I would like to have is a reverse: input value does not have to appear on the select list, but upon select from the dropdown list text field should change it’s value to selected one. Best if the control could submit option value of the selected option, but if that is difficult to achieve it could return just the label of the list option.
Are we talking about something like jQuery autocomplete?
Not quite. When autocomplete list is open, it displays only options starting with entered text, not the whole list. For list select, user needs to see all options.
Besides, I see no way to open dropdown other than start typing something that is present in the autocomplete list.
But yes, autocomplete is similar by means that it allows to input arbitrary text and also to select an item from dropdown list.
I have sent the combo script that is adding items to the select list to your gmail address.
You’re right.
It actually works but only if you do not recall uniform.js or even if I disable with / * .. * / The section “Radio,” uniform.js (v1.8.0)
Do you have another suggestion? I’d hate to give up!
Thanks for your patience!
Contact me with email, and will try to solve your problem. Thanks.
Doesnt get any email for you.
Here some changes
function clear_form(form) {
$(form).find(':input').each(function(){
switch(this.type) {
case 'password':
case 'select-multiple':
case 'select-one':
case 'text':
case 'textarea':
if(!$(this).is(':disabled'))
$(this).val('');
break;
case 'checkbox':
case 'radio':
if(!$(this).is(':disabled')){
$(this).attr('checked', false);
$(this).parent('span').removeClass('checked');
}
break;
}
});
return false;
}
Thank you! We’re helping a lot: if you go to Italy come to see us will be a real pleasure!
So, as i understend you have some predefined values(not null), and you want to keep it if fileds was changed and user pressed clear form?
Yes! i want to emulate the operation of the standard reset that normally returns the form data with any proposed values??.
I should have been more precise. But you’ve got the right thing!
The right way to solve this problem, is get all info from form after page load and save it in storage(or cookies if you support ie7 etc.)... If you need help with this, let me know and i will write this…
You’re really kind! The advice is right. I will try to do it alone, so I learn something! Thanks for everything.
Thanks you too…)
You are truly valuable!
Unfortunately, I do not work. this is my case and I have added your function to action.js .. any suggestions? Thank you!
<form name =”sub” action =”nestpage.html” id=”sub”> What color ?<input type=”radio” name=”colors” id=”red” checked=”checked”>Red
<input type=”radio” name=”colors” id=”blue”>Blue
<input type=”radio” name=”colors” id=”green”>Green
<button class=”btn” onClick=”clear_form(‘sub’);” type=”button”>Clear form</button> <input name=”” type=”submit” class=”btn”>
</form>... <button class=”btn” onClick=”clear_form(‘#sub’);” type=”button”>Clear form</button> ...
Aquarius has solved 99% of my problems. Perfect. Now, however, I would like to reach 100% I do not know how to add a “reset” button in a form that also contains the radio. Can you give me an example? – Forgive my ignorance! Thank you!
Hi
Include this function in actions.js
function clear_form(form) {
$(form).find(':input').each(function() {
switch(this.type) {
case 'password':
case 'select-multiple':
case 'select-one':
case 'text':
case 'textarea':
$(this).val('');
break;
case 'checkbox':
case 'radio':
this.checked = false;
break;
}
});
return false;
}
How to use:
<button class="btn" onClick="clear_form('#formID');" type="button">Clear form</button>
This function will be included in next update
Thanks for purchase. Let me know if you have any questions or suggestions.