পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Wednesday, March 1, 2017

KnockoutJS - Overview

What is KnockoutJS?

KnockoutJS is basically a library written in JavaScript that is based on MVVM pattern that helps developers building rich and responsive websites. This separates the application's Model (stored data), View (UI) and View Model (Javascript Representation of model).
KO is an abbreviation used for KnockoutJS.

History

KnockoutJS was developed and is maintained as an open source project by Steve Sanderson, a Microsoft employee on July5, 2010.

Features

  • Declarative Binding - HTML DOM elements are connected to model through data-bind attribute using very simple syntax. It is made easy to achieve responsiveness using this feature.
  • Automatic UI Refresh - Any changes made to view model data are reflected in UI automatically and vice-versa. No need of writing extra code for this.
  • Dependency Tracking - Relationship between KO attributes and KO library functions/components is transparent. Automatically tracks data changes in KO attribute and update respective affected areas.
  • Templating - Templates are a simple and convenient way to build complex UI structures - with possibility of repeating or nesting blocks - as a function of view model data.
  • Extensible - Extends custom behavior very easily.

Why use KnockoutJS?

  • KnockoutJS library provides an easy and clean way to handle complex data-driven interfaces. One can create self-updating UIs for Javascript objects.
  • It is pure JavaScript Library and works with any web framework. It's not a replacement of Jquery but can work as supplement providing smart features.
  • KnockoutJS library file is very small & lightweight.
  • KnockoutJS is independent of any other framework. And is compatible with other client or server side technologies.
  • Most important of all KnockoutJS is open source and hence free for use.
  • KnockoutJS is fully documented. The official site has full documentation including API docs, live examples and interactive tutorials.

Browser Support

KO supports all mainstream browsers - IE 6+, Firefox 3.5+, Chrome, Opera, Safari (desktop/mobile).

No comments:

Post a Comment