Discussion on Multi Style AngularJS Responsive Admin Template | mAdmin

Discussion on Multi Style AngularJS Responsive Admin Template | mAdmin

Cart 1,282 sales
Well Documented

TheRubikThemes does not currently provide support for this item.

139 comments found.

How to prevent main content autoscrolling when clicking on menu categories? It looks weird, for example: http://scr.hu/0fc4/03aji I click on “FORMS” menu, it expands by showing several subcategories, and same time my main content is getting scrolled up by ~50% :|

Hi,

You can open js file “vendors/metisMenu/jquery.metisMenu.js” and delete setTimeout function below:

// Auto Scroll document when click
setTimeout(function () {

”../../images/icons/loading.gif” why you don`t include them , simple like you did here ?

We only included some free images.

Yea, it’s 2nd update without changelog info….

Yeah, updated changelog information on version 5.0, sorry about this inconvenience.

Thank you!

Ok, np :) btw, why is background hardcoded in css to your site? background: url(‘http://swlabs.co/madmin/code/images/gallery/13.jpg');

This is rule, we can’t include some images into package file.

Hi,

Could you please update the change log for the updates on Oct. 6 and Oct. 14.

Thanks.

Yeah, updated changelog information on version 5.0, sorry about this inconvenience.

Thank you!

Hello,

I have latest node version running .local and i never heard of node static,

“grunt” builds, but whats the command inside the “app” directory , since its not a .js file the command “node filename.js does not work.

Thanks :)

When you sell a theme for AngularJS, it should work on a standart nodejs.org server ,and if it doesnt i want my money back.

A theme also run on a standard server. Node static is just a module for Nodejs, it’s save time for you to set up new server.

Please read more:Node static

ok, got, it thanks ;)

There are so many bugs on AngularJS version. I’m looking at the template on Chrome. Any plans to fix those soon?

Thanks for your comment.

We still fix it now.

Hi,

found a new bug.

Header & Top = Fixed, the side bar cannot be scroll anymore.

can it be Fix for the Top bar only?

Thanks.

Yes, the simple way is edit CSS:

.page-header-topbar {
    position: fixed;
    width: 100%;
    top: 0; left: 0;
}
#wrapper {
    padding-top: 50px;
}

Hey,

Angularjs version is not loading on mobile. Could you please make it lighter and mobile compatible?

Thanks

Hi,

Not loading mean white page or something? I’ve test with link demo, it’s still work. Next update, we will fix responsive with Angular version and try to minify javascript

Thanks

When can i expect the next version?

Update will release next week

Hi,

you have a impressive theme. but there’s a problem which stops me from purchasing.

in the mobile version, tested on iphone 4, there’s overlapping of the top bar, message, email , notification and user avatar with the Dashboard, which renders unseeable (icon is white).

if you just minimize the screen of any browser, you will find it. tested it on safari on iphone, chrom on xiao mi 3, and firefox / chrome on pc by resizing the screen.

steps to replicate : 1. open the main page of website 2. resize to smaller size, fit for small phone 3. check the header part.

i am testing it on angular version.

if you really need a screenshot, i can provide, but how to send it over?

btw, the HTML version is working fine, if you could just make them the same would be awesome.

That’s good comment, we will fix it in this week update.

Thank you for your interest.

hi,

great template, but there are some minor bugs. 1. on touchscreen devices miniscrolling is really slow

Hi jbird_2030,

Let us know miniscolling is slow for what component (sidebar, chat form, ...)

Thanks for purchased!

it is actually the case with every slim scrolling. Sidebar, chat, lists on dashboard…

We will fix them, thanks!

hey,

the angularjs version is quite slow. Please check that report http://gtmetrix.com/reports/madmin.swlabs.co/A4PmWate

Thanks

Hi sattip,

Right, we chose to load all library (libs.js) once, not for each page. It take a little time to first load. Let edit gruntfile.js, remove some vendors as you don’t need.

Thanks for purchased!

Actually at that file you include more than once the jquery angularjs please check. Some of the libs are minified some others not inside the same file.

We will check it.

Hi, i just love your work and bought it! Is there only option to completelty hide the left sidebar and it only opens on clicking the “burger-button” THX

Hi, thanks for purchased!

We recommend a simple code:

$('.burger').toggle(function(){
  $('#sidebar').hide();
  $('#page-wrapper').css('margin-left','0px');
}, function() {
  $('#sidebar').show();
  $('#page-wrapper').css('margin-left','250px');
});
Let create a button has class “burger” somewhere as you want

clicking on chat contact in angular version doesn’t work, in html version it expands conversation with this contact

Unfortunately, chat contact is not available for Angular version.

Thanks for purchased

Is there a way I can set Topbar to only display when user clicks and not onmouseover ? Thanks!

Thanks a lot. I will link to route in order to open a View. I will let you know if it worked.

Nope, nothing.. I couldnt do it. Im using laravel. Do you think whats the best approach to load a view from it? Shall I just data-target=”{{{ return View::make(‘modaltest’) }}}” ??? I mean that data-target is activated when you click it or when the page load? Are you using Bootstrap? Do you have a documentation for the modals?

Documentation is here, please read carefully part ‘Usage’ include “Via data attributes” and “Via javascript”.

Hi, I am trying out the advanced dropdown found on http://swlabs.co/madmin/code/ui-dropdown-select.html

I want to put a multi select in every row of my table. However, it shows properly for the first instance but not after that. Please see my screenshot http://puu.sh/bKfFp/7c86bce502.png

Each row is just this code: <tr> <td>hi</td> <td>hi</td> <td>hi</td> <td><select id="pre-selected-options" multiple="multiple"> <option value="elem_1" selected="selected">elem 1</option> <option value="elem_2">elem 2</option> <option value="elem_3">elem 3</option> <option value="elem_4" selected="selected">elem 4</option> <option value="elem_5">elem 5</option> <option value="elem_6">elem 6</option> <option value="elem_7">elem 7</option> <option value="elem_8">elem 8</option> <option value="elem_9">elem 9</option> <option value="elem_10">elem 10</option> <option value="elem_11">elem 11</option> <option value="elem_12">elem 12</option> <option value="elem_13">elem 13</option> <option value="elem_14">elem 14</option> <option value="elem_15">elem 15</option> <option value="elem_16">elem 16</option> <option value="elem_17">elem 17</option> <option value="elem_18">elem 18</option> <option value="elem_19">elem 19</option> <option value="elem_20">elem 20</option> </select></td> <td /> </tr>

Can you tell me what I am doing wrong.

Thanks.

Hi,

Let change id=”pre-selected-options” to class=”pre-selected-options”. In ui-dropdown-select.js, let find code: $('#pre-selected-options').multiSelect(); change ”#pre-selected-options” to ”.pre-selected-options”

Thanks for purchased!

Thanks, it worked.

I want to use Toastr Notification as on load instead of click event.

How would I do that?

Hi, thanks for purchased.

In “ui-toastr-notifications.js” file, below code “$(function () {“ , let insert initial code:

  • toastr.info(‘Notification content’) or toastr.success(‘Notification content’);
More information are here

Hi,

I want to know that can you convert the following template for Joomla 3.x? And how much would be the price?

Thanks

Unfortunately, we don’t have that plan now. Thanks!

Hi Guys,

Need to add a WP blog for my front-end one page themed website. What is the easiest way to get the same look & feel for blog page as rest of the website?

thanks Koseel

Hi Koseel,

Thanks for purchased

I do not fully understand your issue. I think you can try to change components (font, button, tag link…) and color as our template, easiest way to do that is change class of these component.

Hope this help

Hi @tatsuya,

I am about to buy your template, but I found a little issue wich the running version: at the dashboard, when I click the dropdown button options, for the user: John Doe widget, it doesnt open. I have to click twice.

Hi iuristona,

Thanks for comments, we will fix it and answer soon.

Does this app run on AngularJS? Yes or no?

This template include two version: normal html & AngularJS version.

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