Discussion on Angulr - Bootstrap Admin Web App with AngularJS

Discussion on Angulr - Bootstrap Admin Web App with AngularJS

Cart 7,816 sales
Well Documented

Flatfull does not currently provide support for this item.

1480 comments found.

How long until you have RTL support?

You can use this if you need it urgently. https://github.com/morteza/bootstrap-rtl It’s license not allowed to use in this file.

i will make one in future update.

Thanks

Hi,

how to make mail app mail list have fixed header ?

so compose and filter sections stays visible when scrolling ?

Thanks, Nico

i will include some other layout you can use to implement this in next update.

Thanks

hi and thanks for this great web app. It looks amazing! I have not yet learned angular. but I usually build web applications with strictly php, css, and javascript. if purchased, do it also include a version that is strictly hmtl5 (html,css,javasript) and I could build in php with no angular needed?

thanks so much again for your hard work.

If you do not use the AngularJS. some of the features(full ajax page, lang switch, local storage…) will not available.

but you can still use many jQuery plugins which included.

the html(separated header.html, footer.html, nav.html) and css are suitable for php.

Thanks

thanks so much for responding but decided to switch the project over to angular.js. took a look a the docs and it blew me away. just purchased! thanks so much for your hard work!

Thanks!

Hi. I have buy this great theme. and i am trying to integrate it to my own site. I am a bit confused with classes with short names like ”.m-b”,”.m-r”,”.b-r”. can you explain what does these abbreviations mean?

CSS Utilities. http://flatfull.com/themes/angulr/#/app/docs

.m -> margin .b -> border

Thanks

thanks alot

Anytime.

Hi There,

Is there anyways I can get rid of the ”#” in the URL? for example i dont want my URL to say www.domain.com/#/app/dashboard I want it to say: www.domain.com/app/dashboard

http://stackoverflow.com/questions/14319967/angularjs-routing-without-the-hash/14320344#14320344

put the code in the “js/app.js”

.config(
  [          '$stateProvider', '$locationProvider',...,
    function ($stateProvider,   $$locationProvider,...) {
...
$locationProvider.html5Mode(true);
...
}]

Can I use this template with ASP.NET MVC?

If you ASP.net have the restful api, yes.

Thanks

In mobile, when you have the off-screen nav open and you navigate to another page from the aside (dashboard, email, etc) you can see a 2nd scroll bar show up when loading in the new content for just a fraction of a second.

Is it possible to remove the 2nd scroll bar when loading in content from the aside in mobile when using off-screen?

I’ve sent an email with a screenshot and more detailed steps to reproduce the issue.

I could not reproduce the issue on a real mobile/tablet device, only when resizing the window.

The scrollbar does not take place on smart device.

Thanks

hi, i want translate fullcalendar to other lang,how can i do then? i try to change fullcalendar.js , but no’t work.

by the way?can build users page in next update? Thanks! Keep up the great work!

There is a language switch for fullcalendar. http://angular-ui.github.io/ui-calendar/

contacts page will be add in future update.

Thanks

ok,well done.

thanks. expecting for the next update.

Next update coming soon. Thanks

Hello, small bug in routing: in mail section, all folder (starred, sent etc) routes still include /inbox

you can change the “inbox” to other as you want.

.state('app.mail.list', {
                url: '/filter/{fold}',

Thanks

Fantastic work! This theme is evolving every week!

1) Can you extend the off-screen class so we can control it to go off screen on the left or right side? (off-screen-left and off-screen-right?)

2) I’m noticing that the off-screen does not work for the 2nd button (the cog) in mobile, can you extend this to also make use of the off-screen class (and hopefully with support for off-screen-[left|right]?

  <button class="pull-right visible-xs dk" ui-toggle-class="show" data-target=".navbar-collapse">
    <i class="glyphicon glyphicon-cog" />
  </button>

Thanks! Keep up the great work!

1: i will give a “off-screen pull-right” option. 2: the off-screen need some specific structure. not all the elements support this.

Thanks

Hello there,

I just bought your template (it is beautiful!) But I do not understand how to make a page as I want because everything functioned samble JS (I do not code). So I would like the code to have a blank page.

Thank you !

1: create a page_blank.html under the “tpl/” folder.

2: in the “js/app.js” add a new state.
.state('app.blank', {
          url: '/blank',
          templateUrl: 'tpl/page_blank.html'
})
3: in the “tpl/blocks/nav.html” add a new nav item
<li ui-sref-active="active">
  <a ui-sref="app.blank">
    <i class="glyphicon glyphicon-leaf icon" />
    <span>Blank</span>
  </a>
</li>

4: refresh the page. you will see the new blank page.

Hi! I’ve congratulated flatfull and this theme before and I’ll do it again. Awesome.

I’d like to know the reason for this particular line coded in directives.js: $location.hash(‘app’);

You add an aditional hash at the end of the url. This adds a new entry in the browser’s history stack. This new entry points to the same page… I’d like to know if there’s a real need for this.

Thanks again!

You are right! this code is from AngularJS api document.

We do not need set the $location.hash(‘app’); it will go to the top of the page.

Thank you!

Hi I’m having some problems integrating the progress bars (binding them up to the $scope properties – setting animation options) are there any docs for this or could you point me in the right direction? I have been able to to get standard bootstrap <progressbar> working but the ones in this theme look better :-)

Actually its dead easy :-) it is using the standard bootstrap control. heres an example wired up to $scope.uploadProgress in case anyone else needs it.

<progressbar value="uploadProgress" class="progress-xxs m-t-sm dk" type="primary"></progressbar>

yes. define the model in your controller.

Hi, I just bought this item and it looks awesome! One thing I’d like to suggest using of require.js, because I noticed that all controllers are placed in controllers.js, all directives in directives.js, etc…

Anyway, it’s a 5 stars item.

Actually you can load the controllers(or directives) in the router state. check the email pages. Thanks

Hi, Is there an option for a NO angular version (mode)? I mean full javascript version of the template. Thanks

no No-angularJS version. lot of the functions depends on Angular. Thanks

where you associate Controller with views, I was expecting something like this .state('app.home', { url: '/home', controller: 'DemoControler', templateUrl: 'tpl/app_home.html' })
<div ng-controller="DemoControler"> Problem solved. </div>

You got it.

hi I have a question about the jquery sortable.

I used this: ul ui-jq=”sortable” class=”list-group gutter list-group-lg list-group-sp” li ng-repeat=”item in list” ng-bind-html=”item.html” /li /ul

The sortable works well if I put some data in the “list” however if I push some new items into the list and these new items will be sortable… How can I make the new added items sortable? Thanks.

http://farhadi.ir/projects/html5sortable/ trigger a “sortupdate” event
angular.element("#list").on('sortupdate', function(){
      console.log('test');
    });

place these code in your controller.

Thanks!

Anytime. :)

If I embed charts in the directive as content template, the style colors do not show. All of the charts are in black and white. Can you tell me how to fix it?

Thanks

Make sure you config the ui-options with the right color.

how can i switch or convert to rtl

can i use this tamplet in a php script that iwill programme

Yes. you can use the html and css. thanks

Support RTL now. Thanks

First off, fantastic work on this great Angular template!

When on mobile (iPad in this case) and the menu is collapsed and then I select a menu item, the menu stays open.

Also, when in fixed mode and you are scrolled down far enough, the menu does not show at all. Example: click on widgets and then scroll down near or at the bottom of the page. Now click any other menu item and note the menu does not show. If you scroll a bit, you can get it to show, but not in the correct place.

Fixed in 1.1.2, Thanks

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