Skip to main content

Questions tagged [data-binding]

Filter by
Sorted by
Tagged with
1 vote
1 answer
140 views

Currently reading Steve McConnell "Code complete". "General issues in using variables" chapter, "Binding time" section. He says about variable's binding time in such ...
CoderDesu's user avatar
  • 1,015
1 vote
1 answer
230 views

In my limited understanding, one-way data binding could happen like the following: On the back-end, I have a Node backend server. In that, I have a layer that communicates with the database (Model). I ...
szeb's user avatar
  • 121
-3 votes
1 answer
496 views

After hours of reading blog posts, I understand that React has one-way data binding, and Angular has two-way. But I don't actually know what that means.... React import { useState } from 'react'; ...
Paul Draper's user avatar
  • 6,088
1 vote
0 answers
778 views

Requirement I am currently working on an android application that uses MVVM, live data and databinding. I have a use-case where I need to show a Comment button in multiple screens in my android app. ...
Anirudh's user avatar
  • 119
-1 votes
1 answer
107 views

I've been developing several front-end web-applications recently that bind against a database using a RESTful CRUD api. I've noticed a massive amount of boilerplate code going into defining the API. ...
Nathan Goings's user avatar
0 votes
1 answer
199 views

Wondering if there is anything closely resembling data-binding but for boolean values / triggers. It seems like it could be related to Binary Decision Diagrams (BDDs), but they are precomputed rather ...
Lance Pollard's user avatar
0 votes
0 answers
79 views

I am confused (easily done). To me model is the data from the database sent back as JSON. When I think of that in an Angular context, when two-way binding is configured, it makes me think the ...
johnny's user avatar
  • 3,679
3 votes
1 answer
1k views

I have a WPF view which contains 2 mutually dependent properties; a change in one might trigger a change in the other. How do I write code that cleanly updates both? More specifically: I have WPF ...
Ramzi Kahil's user avatar
  • 1,089