Jump to content

Search the Community

Showing results for tags 'angular'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 8 results

  1. Hi Team, I couldn't see any angular 2+ Tutorials. Just let me know if any.
  2. Hello all Years ago I set up a user (social) website with Angular. Now looking back it seems that was the wrong choice, as pages are not shareable. Angular renders the html into shorter pages, letting out the main html tags for example. If I want to share one of the site pages, the sharing result is the homepage. As in Angular this is the only page of the site with the needed html tags. Now the question: What is the best and easiest way to convert the site into a site where pages can be shared without any problem? Thanks ahead & kind regards, Pieter
  3. Wylbur

    Angular2?

    Hi, I suppose that you know that Angular version 2 is out? Is a new section being created for it? If so, when would it be ready to go online? Have you looked at "Aurelia"? http://aurelia.io/ Are there any plans to add a section for that? Inquiring minds want to know.
  4. Hello everybody, I'm new in angular so sorry if my question is ridiculous. I have a drag and drop file area and when I put a file I put his details (attributes: name, size, type) on inputs disabled because I don't want that users can change them. All of that is a form, so I want to save this with angular in scopes. Here my code: <div ngf-drop ngf-select ng-model="files" class="drop-box" ngf-drag-over-class="'dragover'" ngf-multiple="true" ngf-allow-dir="true" accept="{{acceptSelect}}" ngf-pattern="pattern" required>Arrastre y suelte su archivo aquí</div> <div ngf-no-file-drop>File Drag/Drop is not supported for this browser</div> <br> <div class="preview"> <div>Detalles del video: <div style="clear:both" class="videodetails" ng-repeat="file in files"> <div class="form-group"> <label class="col-md-4 control-label" for="fileName">{{ "Nombre" }}</label> <div class="col-md-5"> <input id="fileName" type="text" ng-model="file.name" disabled> </div> </div> <div class="form-group"> <label class="col-md-4 control-label" for="fileSize">{{ "Tamaño" }}</label> <div class="col-md-5"> <input id="fileSize" type="text" ng-model="file.size" disabled> </div> </div> <div class="form-group"> <label class="col-md-4 control-label" for="fileType">{{ "Tipo" }}</label> <div class="col-md-5"> <input id="fileType" type="text" ng-model="file.type" disabled> </div> </div> JavaScript: $scope.file = function (data) { $scope.file.fileName = data.name; $scope.file.fileSize = data.size; $scope.file.fileType = data.type; } I don't know what I'm doing wrong. Any help? Does anybody know to fix it? Thank you very much!
  5. some of the Angular examples don't work with current version (1.3.11) of angular.js the example at http://www.w3schools...y_ng_controller works fine until you change the version from 1.2.26 to 1.3.11 so changing the line <script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script> to <script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.11/angular.min.js"></script> breaks the example. This also applies to other examples that use controllers.
  6. some of the Angular examples don't work with current version of angular.js the example at http://www.w3schools.com/angular/tryit.asp?filename=try_ng_controller works fine until you change the version from 1.2.26 to 1.3.11 so change the line <script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script> to <script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.11/angular.min.js"></script> This also applies to other examples that use controllers.
  7. Im trying to create a form, first element should be a <select> tag with a few options and each of them will dynamically bring up a different set of forms depending on what the user chooses. The idea is within the select tag there will be different categories like cars, properties etc.. first user only sees that and when chose, it will bring up a set of input fields that required for that category. Anyone got an idea what would be the best way to do it in angular?
  8. Hi, I hope this subject should be under javascript.. If you design a great website using angularJs, might sound great but what about search engines and visitors without js or whatever other stuff it needs. Could you guys give me some ideas on this subject? Example design a website like gumtree.com, the content is the main thing which is the main thing to be handled by angular, but how you deal with the search engines? Heard about prerender but is google going to look at each possible variation as a new page(which would be good) also if not all your content needs to be dynamic, example you have many static stuff and writings plus products. Is it better to only use angular JS on the product area and keep as much as possible in html? Could I use angular to boost search engine results, like each variation for your product is being seen by google like an new page, more pages = better results.. What if someone does not have JS at all? Is almost anyone have JS installed on the device to have angular be so popular? Also is there a way to use the prerender version of the website for non JS visitors? Like example gumtree. You need to allow the users to post adverts, which has to be stored in a database. Nice and everything, but in this case you can not just write a html version and load that one for each non-JS visitors because that case you would have to modify it each time someone posts a new ad. Is there any automatic way of doing this or any way of having a simple html page automatically created for non js visitors, but having accurate data there! hope you guys can understand what I was on about.
×
×
  • Create New...