366 comments found.
What do you mean by functional chat?
A functional chat is just a dummy interactive messenger where you can mimic an interactive chat session, without any backend. Just the interactive UI using Javascript.
Hi,
can you please integrate the validation for the Login & Registration page and is it possible to customize the “select2” style to look like the other Form Elements?
And is it possible to use the validation with a TextBox that have an Icon and if the Input is invalid the Icon also change the color to red?
Thanks.
Thanks for your feedback. We will think about it. Here we have used https://github.com/jzaefferer/jquery-validation this plugins and you can make custom validation by using it.
Did not see a support forum so I am posting here. Basically I removed the right side menu from the HTML and the following js below since I dont have any charts from the “Form Wizzard” page, but when I do it breaks the wizzard. I have narrowed the problem down to the <div class="side-mini-graph">
<div class="target-sell">
</div>
</div>. Not sure when I remove this part and the JS for charts the form breaks.
<!--Easy Pie Chart-->
<script src="assets/easypiechart/jquery.easypiechart.js"></script>
<!--Sparkline Chart-->
<script src="assets/sparkline/jquery.sparkline.js"></script>
<!--jQuery Flot Chart-->
<script src="assets/flot-chart/jquery.flot.js"></script>
<script src="assets/flot-chart/jquery.flot.tooltip.min.js"></script>
<script src="assets/flot-chart/jquery.flot.resize.js"></script>
<script src="assets/flot-chart/jquery.flot.pie.resize.js"></script>
Can you send us a screenshots of js error console?
Ya, where should I email it. The error that happens is only on some pages even though I removed the right side bar and chart js on all pages. The error is Uncaught TypeError: Object [object Object] has no method 'easyPieChart' scripts.js:230
(anonymous function) scripts.js:230
c jquery.js:4
p.fireWith jquery.js:4
x.extend.ready jquery.js:4
q jquery.js:4
event.returnValue is deprecated. Please use the standard event.preventDefault() instead. jquery.js:5
Please send a mail to support@themebucket.net
Hi,
Is data-date-format working?
i always get MM/dd/yyyy
Thanks
sample:
<div class="input-group input-large" data-date="2014/01/01" data-date-format="yyyy/MM/dd">
<input type="text" class="form-control dpd1" name="from">
<span class="input-group-addon">until</span>
<input type="text" class="form-control dpd2" name="to">
</div>
We’ll check it and let you know.
thx
Please paste the following code instead yours
<div class="input-group input-large" data-date="2014/01/01" data-date-format="yyyy/mm/dd/">
<input type="text" class="form-control dpd1" name="from" data-date-format="yyyy/mm/dd">
<span class="input-group-addon">To</span>
<input type="text" class="form-control dpd2" name="to">
</div>
thx
Hi ThemeBucket,
Is it possible to trigger a modal alert (and passing the parameters) with some jQuery code ? Thanks !
We are using default bootstrap 3 modal and the modal is open programmatically $(’#myModal’).modal(‘show’);
thx
Great, thank you !
you’re very welcome
Hi, I’ll take the opportunity to thank you for your amazing work with this admin theme! I have three feature requests for the next update: - CodeMirror.net - Typography - Tour guide
Thank you!
Thanks for your feedback. Typography is already there. Do you have any better suggestion for typography? And we will also try to include CodeMirror.net, Tour guide in next update.
Hi ThemeBucket,
I think I found a bug. Please try what follows:
- Hide the left sidebar.
- Open the right sidebar.
You can see that a part of the page’s content disappear to the left.
Thanks for your nice feedback. We always appreciate it. It’s a minor switching issue we will fix that in next update.
I would really appreciate if you could provide me with the replacement code (in scripts.js I guess), because I don’t think I’ll update the whole theme, I made too many modifications so far. Thanks in advance ! 
No problem, we will give you replacement code.
Great Theme
I have recently brought this theme.
The problem I am facing is that I am not able to use the required attribute in my jsp files. I am getting this error – equal symbol expected
Thanks in advance for your advice
Can you please give us specific path where you getting this error or where you want to use required attribute?
thx
I am using it in struts based jsp application like
<s:textfield type=”text” cssClass=”form-control” placeholder=”User ID” name=”username” key=”label.username” size=”20” required />
The above statement is giving me the exception – equal symbol expected. If I remove the required attribute it works fine.
Glad that it finally worked for you. Thanks 
Hi, Just bought this bucketadmin theme, but there was an issue when I open this url; http://preview.themebucket.net/?item=bucketadmin from IE10. But the left menu/navigation is not appear. I saw this theme is support on IE9 and above.
Please your advice. Thanks.
Thanks for noticing this. We’ll check it and let you know the solutions.
Regards
Hi, any update for this issue? Thanks.
We’ll take care of it in next release.
thx
Thought I’d let you know the flot.pie.resize causes an issue on retina screens, only the top left quarter of the pie is displayed. I swapped back to the flot.pie and that works fine.
It’s a known issue… https://github.com/flot/flot/pull/70Thanks a lot for such a nice suggestion. We will check it out and implement it accordingly.
Hi,
Great theme but the documentation is very poor. Any idea how to make Select2 Components (second basic select) have the same look as on your demo site?
Thanks in advance! 
Thanks for your observation. We are working on our documentation to rich more details.
I found this page : http://ivaynberg.github.io/select2/
Everything is ok. 
Thanks, glad that it worked. Please don’t hesitate to knock us anytime. You can even send us email at themebucket@gmail.com
Looks great!! Very nice design.
Thank you 
Hello, I’m curious when 1.5 will be available and if it in fact will include DataTables Editor. Thanks.
Still we are working on it but not sure when we can. Thanks for you message.
Hello Themebucket,
Purchased your theme. Have an issue with the editable table page. When we click on the add new row, the input tags are being taken from the edit Row function. You can check this. Just inspect element the cancel button, it does not have the attribute data-mode=new which as per the jquery , must be present.
$('#editable-sample_new').click(function (e) {
e.preventDefault();
var aiNew = oTable.fnAddData(['', '', '', '',
'<a class="edit" href="">Edit</a>', '<a class="cancel" data-mode="new" href="">Cancel</a>'
]);
var nRow = oTable.fnGetNodes(aiNew[0]);
editRow(oTable, nRow);
nEditing = nRow;
});
Please check and lemme know what the issue is.
Thanks!
Thanks for the ticket. We are looking at this issue and we will update you as soon as possible 
Hello ThemeBucket,
I’ve managed to resolve the issue.When you are adding a new row, you are calling editRow(oTable, nRow); function. So, it ultimately calls the edit function which has a cancel button without “data-mode=new”. So, just create a new function editaddedrow and add data-mode=new in the create button a tag. This really helps to determine when to make an ajax call to update the existing data and when to make an ajax call to add new record.
Hope this helps.
Thanks!
You’re awesome! Thanks a lot for sharing your solution. 
Please advise the best way to add the footer in “Horizontal Menu” to the default layout with sidebar?
Would you also consider adding footer to the default layout in the following version?
Horizontal Menu page already have footer. You can edit it yourself. If you need footer all pages then just copy footer html and paste all pages.
thx
i did before i asked, but the css was not right. as you know the sidebar’s position is fixed, simple copy and paste the footer without modifying related css will not get it responsive working.
ok we will take care of it in next release.
thx
Hi, when I do print on Invoice page the print has additional text overlayed on invoice text. Looks like its not doing just the invoice print but getting some side nav content as well. Could you please fix that so that in any page I do print using window.print() it should not have the side navs.
Thanks -Suresh
Thanks for your feedback. We will fix it and get back to you soon
hi, i take a fast look and love this theme but on mobile, some viewport issues welcome me like on datatables. i’ll buy this theme but do i wait for some bug fixes or may i upgrade after buying the theme
We are very concern about client feedback. Step by step we will make it more perfect. And if you purchase this template then no problem we will always help you for any kind of BuckectAdmin related problem. Here we are trying to do best form our side. Thanks
Have you used less or sass in this project? Are you able to provide these files if you have? Many thanks
Unfortunately this theme was not designed using less/sass.
How could I set as sorting_desc default column on dynamic tables? Thanks
Sorry for our late reply. Please follow following example for sorting_desc:
$(function() {
$('#example').dataTable( {
"aaSorting": [[ 4, "desc" ]]
} );
} );
Hi, the lockscreen does not look proper anymore since the 1.4 update. Is this a known issue and will be fixed?
Can you please tell me. In which size view-port you are checking?
Hi, it is the same on iPhones 5s, iPad3, Desktop (1366 × 643). Also the lockscreen.html theme from your distribution is behaving wrong. When I check the online demo here on Themeforest, it looks good.
We’re looking into this.