Discussion on Webarch - Responsive Admin Dashboard Template

Discussion on Webarch - Responsive Admin Dashboard Template

By
Cart 4,894 sales
Well Documented

ace supports this item

Supported

This author's response time can be up to 1 business day.

1192 comments found.

If I buy this item this weekend, will I get the new update on Monday for free or do I have to pay for it?

Hi there Yes its free, Updates are free for lifetime :)

On a 768 screen (Ipad landscape) the icon to open the menu does not work. Apparently this is disabled by default (kozmicblues ticket). But in that case you should not show the icon. Also could you enable it on the preview of this team? Tnx!

Hi there, True, will update the preview demo so that the menu opens up on 768 screen :)

Great! Do you let me know when available? Tnx!

Hi there, if you wish we can send you the barebone folder with the option open up condensed menu on 768 screens

My team and I have decided to purchase your theme for our build. Just waiting for the update you mentioned for this Monday.

Will this update include the use of the newest Datatables release v 1.10? Along with the responsive support?

Hi there Yes why not :) I’ll go through the changelog of Datatables and let you know if its possible to do it by Monday :) Thank you very much!

That is great to hear! Our application heavily relies on the use of Datatables and its components.

Hi Ace,

By default the color for tags object are blue (label-info). Is it possible to change the color for example to red (label-danger)?

Thx and congrats for this theme!

<input class=”” type=”text” value=”Amsterdam,Washington” data-role=”tagsinput” />

Thx Ace, I replace all the files in …webarch\HTML\assets\plugins\bootstrap-tag with the new version, but same issue.

Can you try to write this in your code, I don’t modify your code, only copy&paste:

<script type=”text/javascript”> $(‘input’).tagsinput({ tagClass: ‘label-danger’ }); </script>

Thx

Ace, I solved it!

Remove the data-role=”tagsinput” from input element, then…

<script type=”text/javascript”> jQuery(document).ready(function ($) { $(’.red’).tagsinput({tagClass: function() {return ‘label label-danger’;}}); $(’.blue’).tagsinput({tagClass: function() {return ‘label label-info’;}}); }); </script>

Hi there Sorry we could not pay much attention, Im glad you were able to solve that, as you know we are super busy with the new awesome update :) Thanks!

Hello, Your theme has a Tree View structure? Like this:

http://responsiweb.com/themes/preview/ace/1.3/treeview.html

this feature is mandatory for me to buy, and I didnt find in the preview. Tell me, so i can purchase ASAP.

Hi there Yes we do not have the treeview in webarch, but we are working on a big update this Monday and alot of surprises :) we can push in this tree controller too

Hi, there is a pretty significant bug on the “Front” version of this website.

1. If you set the page width to be small, so the ‘collaposed’ menu box appears (767px or less). 2. Then if you scroll down the page until the “white sticky” menu appears. 3. Try and click the collapsed menu – but does not work.

I did some debugging, and the collapsed menu itself is not sticky – it is stuck at the top of the page.

Hi there I think you have sent me an email too :)

It would be interesting to have a “min.css” and “min.js” grouping every file. It’s a bit hard to find what library is used for what purpose (one to rule them all ^^)

Hi there Something like a builder where you select what are the JS files you want and build one min file :) yea great idea

Hi, I’m about to purchase this theme and the only thing that is stopping me is the fact the some of the features are not working (sliders being one of them) I’ve tested the sliders and it only works in IE (my version is 11), it doesn’t work in FF 29.0.1 or the latest chrome.

Also, Any chance of updating the Pricing page of the front end? it’s really simple and doesn’t at all go with the rest of your awesome design.

Lastly, Great job!! This is by far one of the nicest admin themes I have seen!!!! Can’t wait for these issues to be resolved and I start the project using this theme.

Thanks, Jason

Hi there, You mean to open up the menu on hover is it ? :)

Yes, that’s Exactly what I mean.

Ok simply open up core.js line 100
 jQuery('.page-sidebar li > a').on('click', function (e) {
<pre>

change 'click' to 'mouseover'</pre>

Been waiting for the updated with the boxed additions. Its been weeks, whats going on?

Hi there I think this is what you were looking for

http://revox.io/webarch/HTML/boxed_layout_v2.html

You can always toggle the options :D

Hi

In the theme you cannot bind the wysihtml5 to a class. If finally fixed this updating bootstrap3-wysihtml5.js from https://github.com/schnawel007/bootstrap3-wysihtml5

Regards

Hi there wyihtml5 was not support BS3 for long time, Thank! :)

Hi Ace. but if you update the theme with bootstrap3-wysihtml5 it will work. I’ve done this already, just telling you I think you should update the theme for next downloads. There’s another problem with the image insert script, that does not work with the shipped wysihtml5 script but it works with bootstrap3-wysihtml5 script. Best.

Thanks a lot! really appreciate it! :)

How come in screen res 768 you get the mini sidebar but when you click on the bars icon the menu doesn’t change into the left slide out? This seems more logical then nothing happening. Is there a way to make this happen?

If you have a LESS patch I’ll take that too and figure it out. No worries

Hi there, excuse the time zone difference, yes its LESS with the Barebone patch :) can you email to support@revox.io will send it right away

Hi, I’m using datatables, but I can’t see correctly in my smartphone. I don’t have horizontal scroll. Is there any problem? I’ll have to use responsive table for this?. Thanks and sorry for my english.

Hernan

Hi and your code should be something like this, it has to have the responive parameters

    var responsiveHelper = undefined;
    var breakpointDefinition = {
        tablet: 1024,
        phone : 480
    };    
    var tableElement = $('#example');

    tableElement.dataTable( {
        "sDom": "<'row'<'col-md-6'l T><'col-md-6'f>r>t<'row'<'col-md-12'p i>>",
            "oTableTools": {
            "aButtons": [
                {
                    "sExtends":    "collection",
                    "sButtonText": "<i class="fa fa-cloud-download" />",
                    "aButtons":    [ "csv", "xls", "pdf", "copy"]
                }
            ]
        },
        "sPaginationType": "bootstrap",
         "aoColumnDefs": [
          { 'bSortable': false, 'aTargets': [ 0 ] }
        ],
        "aaSorting": [[ 1, "asc" ]],
        "oLanguage": {
            "sLengthMenu": "_MENU_ ",
            "sInfo": "Showing <b>_START_ to _END_</b> of _TOTAL_ entries" 
        },
         bAutoWidth     : false,
        fnPreDrawCallback: function () {
            // Initialize the responsive datatables helper once.
            if (!responsiveHelper) {
                responsiveHelper = new ResponsiveDatatablesHelper(tableElement, breakpointDefinition);
            }
        },
        fnRowCallback  : function (nRow) {
            responsiveHelper.createExpandIcon(nRow);
        },
        fnDrawCallback : function (oSettings) {
            responsiveHelper.respond();
        }
    });

Thanks!!!

My company just purchased this theme, a pretty and very complete one. What a surprise with LESS files… Some variables defined, but not used as they should… Some bugs into UI, some JS code lost here and there, etc. I’m a little disappointed to see such a contrast between the quality displayed, and what I discovered using these template. I hope this will be revised, bugs will be fixed and LESS will be perfectly usable. Thanks in advance.

Hi there Thank you for your feedback :) but yes we want to fix all the possible bugs, If you can be kind enough to let me know the LESS varriables that have not been used :) and the JS code that you have come across we could fix and give it with the next release or even mail you

Check out the new version 2.5 you will be more than happy :)

Hi! First, thanks for this awesome theme! Would greatly appreciate if you can help me theme jsTree plugin (http://www.jstree.com/), Thanks in advance and more power!

Thanks! My colleague has already sent an email.

Hi there Got it :)

Hi Acre! Any news for the theming? Thanks!

Hi there again ! Is there any trick to making no scrollable pages with little or no content ? Right now if change the min heigth, sidebar doesn’t work correctly.

Thanks again !!!!!

Is that a correct practice with your framework ¿?

Thanks !!

Hi it depends :) You can do this way too Open up responsive.css

and in line 16 change the height to 100%

.page-container {
height: 100%;
}
and in line 93 change the height again to 100%
.page-content {
margin-left: 250px;
min-height: 100%;
}

it should now be fine :)

whats coming in the next update and when is it going to be ?

For now the list is -Advance form options -Theme - Minor Bug fixes

Any chance of getting a few different version of the homepage like a real estate directory?

Hi there Are you talking about the frontend ? :)

Considering the theme for use – but it appears the menu is not very well on my Nexus 7 Android tablet. Do not see the condensed version of the menu nor does the toggle function on http://www.revox.io/webarch/HTML

Will this be fixed for Android?

Thanks!

I should mention, the horizontal (wide) view is the only one with the issue. Vertical works great. Please let me know if I can provide screenshots or do additional testing for you. Will the fix be in the next version then?

Hi there Yes that would be great, our email is support@revox.io

Sent the screenshots, feel free to reply if I can provide any other information or assist with testing.

Still my favorite admin theme, definitely my favorite theme on themeforest.

Any exciting future updates coming? Planning any other themes?

My only wish would be a few more form layouts/examples!

Hi there! Thank you very much! you mean layout options ? like themes etc ?

Yep layout options, for complex forms. We run into this a lot and have to dream some up, with varying levels of success. Your widgets and dashboard layouts have a lot more options, form layouts are far less loved! ;-(

Hey guy, okay? I installed TinyMCE 4.0.26 but gives conflicting. Could you help me?

Não consigo usar o TinyMCE-4.0.26, dá conflito nos arquivos CSS.

Hi there Yea we can help you out, its quite hard to tell, but if you could eleborate the error message that comes or send your code to support@revox.io :)

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey