1480 comments found.
This is one of the best themes I’ve ever seen.
When I use the reload option from ui-router [ui-sref-opts=”{ reload: true }”] the aside-folded submenus that pop when I hover the menu get stuck and won’t leave when I hover out (mouse leave).
Can you help me out?
Just let you know i am testing this case, reply soon. Thanks
Can you share with me what tool do you use to scaffold the application or generate the boilerplate code?
Used bower to manage dependency. grunt to manage tasks.
This theme did not use any tools to generate the boilerplate code, but i recommend yeoman generator-angular
Thanks.
When do you think the next update will be? I’d like to purchase it after this update so that I have access to the tree view option for my reporting software.
Thanks
In two days, and include the tree view.
Thanks.
Hi like the theme want to integrate it for my next webapp however the left menu does not have a scroll bar to scroll up and down when sub menus are expanded. If it does, its incredibly hard to find/hover over….
I cant see it…. Any chance there will be a fix for this soon?
Hi, the left menu has no scrollbar, i did it on purpose. you can use the mouse wheel or the arrows on keyboard to scroll the content.
because the scrollbar has different style between ff,chrome,ie.
Thanks.
So what do people that have laptops with the track pad and no scroll wheel do?
the arrows on keyboard should work. thanks
just found another way.
put the slimscroll on the “navi-wrap” will make it has a custom scroll.
<div class="navi-wrap" ui-jq="slimScroll" ui-options="{height:'100%', size:'8px'}">
Thanks
how can i make separate separate pages for all the links instead of loading through javascript ?
<div class="app-content-body fade-in-up" ui-view> // load page here </div>and the “tpl/app.html” loaded into the index.html
<div class="app" id="app" ... ui-view></div>
so you can always copy the page blocks into the app.html and then copy into the index.html
Thanks
i understand that all the pages are loaded there but like how can i make a separate login.html page… i tried to copy everything there but still it loads index page
is there anyway i can get a refund i think this template is not suitable for my dynamic php application… .. i need to split the template and load only that js which is needed for that page… i think it needs all the js everytime when it loads
you can copy the “tpl/page_signin.html” into the index.html, then you got the login.html.
if you do not want to use the angularJS. remove all the js on the page. then it will not redirect to index.html.
the other way is use the AngularJS, but use the php as restful api.
if you want to refund, you can contact Envato support. see if it’s ok.
btw. my other items are separated pages. see if they are suitable.
Regards.
yeah i think its better i choose the separated pages.. i see ur portfolio i see scale is what i would be looking for… is there anyway i can get that template.. sorry but i angular js is new for me and doont have time to learn more on it ..
I think you need buy the “Scale”, and contact Envato support see if you can refund the angulr.
Thanks.
thanks for the support i am contacting envato for it …. i really like ur templates…
Thanks!
Hi Flatfull,
No need today
but just a question about the future of Angulr :
did you plan to add “File Browser” and “Image Gallery” templates ?
Thanks for the suggestion. “image gallery” will be added in future update.
not sure if you have any more updates planned, but I would love to see an image cropper and/or file upload system 
Working on new updates. image cropper and file upload are planned in future update.
Thanks
Image crop and file upload added. Thanks
Followed the instructions in documentation and got only blank screen so far: > npm install -g bower grunt-cli > bower install > grunt build:dev > npm start The browser was started and only showed a blank screen. OS: Mac OS X 10.9 Browser: Chrome The index.html was successfully loaded, but not other views were fetched. This was checked from browser console.
seems like angular.js and other JavaScript files not copied to src/libs.
I changed the grunt/copy.js to fix it. Not sure if this is appropriate.
the copy.js works fine for me. Thanks
atplerry, add a web.config in the root directory and make sure it has the following:
<configuration> <system.webServer> <staticContent> <remove fileExtension=”.json”/> <mimeMap fileExtension=”.json” mimeType=”text/json”/> </staticContent> </system.webServer> </configuration>
this will fix your localization
Thanks, sky-coding!
I keep getting aside.nav.dashboard even with the new update that i download, I am runing it from my inetpub folder
C:\inetpub\wwwroot\src , this is the folder structure too, http://prntscr.com/4pk8s0
This is the print screen of the page on preview on local host http://prntscr.com/4pk7fr
Please i need your help.
Hi, are these .json files in the “l180” folder? (en.json, de_DE.json, it_IT.json), if they are, can you use the chrome devtool or firebug to see if there is a loading error?
few other buyers reported this. can you tell me what is your development environment. os, server(apache, iis..), browser version.
Thanks
I keep getting aside.nav.dashboard even with the new update that i download, I am runing it from my inetpub folder
C:\inetpub\wwwroot\src , this is the folder structure too, http://prntscr.com/4pk8s0
This is the print screen of the page on preview on local host http://prntscr.com/4pk7fr
Please i need your help.
Love the theme!
I’m looking for a date range picker example, but I can’t seem to find one. Is there an example of a date range picker in the theme, or do I need to implement it separately on my own?
Thanks!
There is a directive for Bootstrap date range picker, https://github.com/fragaria/angular-daterangepicker
or https://github.com/fragaria/angular-daterangepickerPlease ignore – I found the solution.
Great!
Any idea why ui.bootstrap.tpls doesn’t seem to be working with this theme?
This happens with a fresh “install” of this theme/package, so it shouldn’t be anything I’ve done to mess it up.
Error: [$compile:tpload] Failed to load template: template/progressbar/progressbar.html
Error: [$compile:tpload] Failed to load template: template/typeahead/typeahead-popup.html
make sure you included is the ui-bootstrap-tpls.js, not the ui-bootstrap.js. the errors show it’s the ui-bootstrap.js without the tpl embedded.
Thanks, that worked! For whatever reason, in the default configuration for this theme, the tpls version was included index.html, but not in app.js, hence the error. Swapped to the tpls module in app.js and it’s working like a charm. 

Hi,
I would need to be able to get a “Header with fluid height and scrollable content” wrapped into a tabset.
This would allow to switch between several “Header with fluid height having their scrollable” content (instead of having them side by side)
Thanks for your help.
Guillaume
if you look into the http://angular-ui.github.io/bootstrap/#/tabs, it does not support separate the tab heading with the tab content.
but you can use the tab css from http://getbootstrap.com/javascript/#tabs .
and use ng-class to bind the ‘active’ class on tab heading and tab pane. eg
<ul class="nav nav-tabs">
<li ng-class="{'active': tabs[0]}">
<a ng-click="tab(0)">Tab1</a>
</li>
<li ng-class="{'active': tabs[1]}">
<a ng-click="tab(1)">Tab2</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane" ng-class="{'active': tabs[0]}">...</div>
<div class="tab-pane" ng-class="{'active': tabs[1]}">...</div>
</div>
$scope.tabs = [true, false];
$scope.tab = function(index){
angular.forEach($scope.tabs, function(tab) {
tab = false;
});
$scope.tabs[index] = true;
}
Many thanks for your quick repl !
I got the tab working with angular but their content does not benefit of the column scrollbar. In fact there is no more scroller in this vbox.
If you had a snippet doing the job I would really appreciate it. I’m sure this is really interesting for many apps.
Thanks in advance !
Finally I got it using the power of angular combined with your great template.
Thanks
Great. i will add an example in next update.
Flatfull – Great work, what all functions will work and not work in IE 8?
Thanks
Many components do no support IE8, (angular-bootstrap, ngStorage..). and this theme does not support IE8.
Thanks
Hi there,
I have been stuck trying to configure dynamic routing using your app configuration but I can not seem to get it to work. There appears to be a few ways you can setup dynamic routing but I have been reading up on it here. https://github.com/GrumpyWizards/ngDynamicRoutingI have removed the hash tag and i’m trying to setup dynamic routing such as ”/app/username” or if that not possible, how about “app/users/username” , having username being the dynamic data.
is it possible for you to show us how we can setup dynamic routing using this great app?
scratch this question. think i found my own answer here
https://github.com/angular-ui/ui-router/wiki/URL-Routing
you can look into the mail app. it has the url: ’/inbox/{fold}’ and url: ’/{mailId:[0-9]{1,4}}’
Thanks
outstanding! thanks so much Flatfull, you are freaking awesome! Your customer service is simply amazing
Thank you!
If you go to the docs page in full screen mode in IE, it doesn’t allow for scrolling. Yet, it does in Chrome. Just letting you know and if this is possible to fix? Thanks.
The issue can be reproduced in IE 11 as IE 8, 9, & 10 do not support full-screen mode.
IE 8,9,10 do not support full-screen mode.
Yes. Fullsceen has a bug on IE11. will fix in next update.
Thanks
Hi,I do not know how to install the version 1.3.0. I’m at the 1.2+,please help me ,thanks~
And I like your work very much!
I got it from the documention,Thanks!
1.3.0 changed some js files url. you need change them in the index.html
Thanks
Hi, Thanks for support Note page. Can you help me how to make note app page keep data when user add new note. For now when I reload the page, all new data of note app was delete. Thanks