Coder Social home page Coder Social logo

now-ui-dashboard-angular's People

Contributors

chelaruc avatar chelarucip avatar digit81 avatar marqbeniamin avatar rarestoma avatar taqishah1214 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

now-ui-dashboard-angular's Issues

Where is angular 9 (on demo project for testing purpose{before purchase})

Website title says, bs4 and angular 9 but this is angular 7. After I tried this ng7 project, and when decide to use and I purchase, I have to deal everything all over again. At least It would be nice to have angular 9 on demo project and see what I can do ? And not re-deal with theme on my project when I tried to put it in.

Thank you.

Change the default red color of side-bar

Hi,

I want to change the default red-color of the sidebar. I did Inspect and got this css -

  .sidebar[data-color="red"]:after,
  .off-canvas-sidebar[data-color="red"]:after {
     background: #FF3636; 
    }

But after changing its background color, it still doesn't change. Please help.

Start Project Instructions

In the Getting Started Instructions located : https://demos.creative-tim.com/now-ui-dashboard-angular/#/documentation/tutorial

The following instructions are given:
How to start the project

Install NodeJs from NodeJs Official Page
Open Terminal
Go to your file project
Run in terminal npm install -g @angular/cli
Then run npm install
And npm start
Navigate to http://localhost:4200

Everything seems to work except for npm start because the package.json does not contain a script tag with a startup reference. Should there be one and if so, which one? For examlpe, when I try to run npm start from a terminal within Visual Studio Code, the following errors occur because of the missing start information in the package.json.

npm ERR! missing script: start

npm ERR! A complete log of this run can be found in:
npm ERR! /Users/eurmgs/.npm/_logs/2019-10-14T08_12_22_255Z-debug.log

Problem with updating nested component

I created a component which is displayed inside the dashboard component. It will show the current temperature which a service gathers through a resolver from my backend API. The problem is that the inital setting of the value shows on the website/component. But if the variabe is updated the value on the frontend does not update or change.
This is the component for showing the temperature. The "tempSolar" and "tempWater" variables are used by interpolation in the html of the "TempsComponent".

import { Component, OnInit, Input, AfterViewInit, ChangeDetectorRef } from '@angular/core';
import { TempsService, Temps } from '../../temps.service';
import { ActivatedRoute } from '@angular/router';

@Component({
  selector: 'app-temps',
  templateUrl: './temps.component.html',
  styleUrls: ['./temps.component.scss']
})
export class TempsComponent implements OnInit, AfterViewInit {

  @Input() solar: boolean;
  solarNum: number = 0;
  waterNum: number = 1;
  tempSolar = 2;
  tempWater: number = 10;
  timestamp: string;

  temps: Temps;

  constructor(private route: ActivatedRoute, private tempService: TempsService) { }

  showInitTemps() {
    this.route.data.subscribe(({ temps }) => {
      this.tempSolar = temps[this.solarNum].rawValue;
      this.tempWater = temps[this.waterNum].rawValue;
    });
  }

  updateTemps() {
    this.tempService.channel.bind('data-update-event', function(data) {
      console.log('number: ' + data[0]);
      this.tempSolar = data[0];
      console.log('solar: ' + this.tempSolar);
    });
  }

  ngOnInit() {
   this.showInitTemps();
   this.updateTemps();
    
  }
}

For more detailed info the github is: https://github.com/Tomson124/ResolVbus-Dashboard/tree/now-ui

How to create secondary menus?

I want to create a secondary menu, how to achieve ?

<div class="sidebar-wrapper">
    <ul class="nav">
        <li routerLinkActive="active" *ngFor="let menuItem of menuItems" class="{{menuItem.class}} nav-item">
            <a [routerLink]="[menuItem.path]">
                <i class="now-ui-icons {{menuItem.icon}}"></i>
                <p>{{menuItem.title}}</p>
            </a>
        </li>
    </ul>
</div>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.