This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 238011 - Optimize binding in templates
Summary: Optimize binding in templates
Status: NEW
Alias: None
Product: qa
Classification: Unclassified
Component: Synergy (show other bugs)
Version: 7.4
Hardware: PC Linux
: P2 normal (vote)
Assignee: Vladimir Riha
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-05 16:54 UTC by Vladimir Riha
Modified: 2013-11-05 16:54 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Riha 2013-11-05 16:54:56 UTC
Templates use mostly {{expression}} but in many cases, it is overkill because 2way data binding is not necessary. AngularJS doesn't seem to have a way for this, but with Bidone, watches are destroyed after populating DOM. 

<span bo-text="session.name"></span> 

This will use less memory that {{expression}} but requires a lot of changes...