Skip to main content
0 votes
4 answers
262 views

I need to be able to store protected, DOM element, attributes at the UI. (For example, I want to store the DBKEY of the target database row along side the matching table row.) As I can see no way of ...
McMurphy's user avatar
  • 1,483
0 votes
0 answers
22 views

I'm having the following issue with Tabulator. When I initialize and add a hundred rows of data, I scroll to the bottom and then append another 500 rows via the button, the position of the scrollbar ...
FanTech's user avatar
0 votes
0 answers
33 views

//App.tsx import { A } from "./A"; import { B } from "./B"; function App() { return ( <> <div> <B /> </div> <A /> ...
sw1's user avatar
  • 1
1 vote
2 answers
94 views

First of all, sorry for my poor English! (translated by DeepL) MyComponent has some 'state' like a counter and displays it. In pattern A, when the hiddenFlag is switched, 'state' of the first ...
tosshie 's user avatar
1 vote
3 answers
234 views

How is React able to update only the parts of the DOM that require updating (because they've changed) as opposed to re-rendering the entire DOM? From what I understand, regular HTML/Javascript web ...
gib65's user avatar
  • 2,039
3 votes
2 answers
271 views

When a React app is rendered for the first time, is the real DOM or the virtual DOM created first? React with JSX is converted to React.createElement(). So, does virtual DOM creation start from here ...
Vishal Kumar's user avatar
0 votes
1 answer
167 views

In a next.js 14 app, I have this component import { FormControl, FormField, FormItem, FormLabel, FormLabelContent, FormMessage, LabelWithTooltipProps } from "@/components/ui/form"; import { ...
Samuel Amann's user avatar
1 vote
0 answers
62 views

Any answer to what the question of what the difference is between virtual DOM and the DOM in React will inevitably tell you that it's more efficient because React only updates the elements that it ...
Zebrafish's user avatar
  • 16.3k
1 vote
0 answers
124 views

Can anyone tell me if VueJS has fine-grained reactivity, similar to signals that use a sub-push mechanism to update directly on the actual DOM? If so, does that make the virtual DOM redundant? I want ...
nhơn's user avatar
  • 11
0 votes
1 answer
29 views

consider I have a below app structure const App = () => { return <div><Header /><Main/><Footer/></div> } const Header = () => { return <>Header</&...
d.s's user avatar
  • 11
3 votes
2 answers
3k views

I am going through lot of articles over the internet asking the difference between the two, but almost everyone of them explains the difference between Virual DOM and Real DOM. According to my current ...
stardep's user avatar
  • 300
1 vote
3 answers
2k views

I'm currently learning React and I've come across the concept of the Virtual DOM. I understand that one of the key advantages of React is its use of a Virtual DOM to improve performance, but I'm ...
Lemons34's user avatar
-1 votes
1 answer
59 views

Explanation: why reactjs use virtual Dom concept, how does it different from orginal Dom. Explain with suitable example . Also explain how react Dom render jsx components How react virtual Dom works ...
Soumya Ranjan Nayak's user avatar
0 votes
1 answer
194 views

I have been plagued with this question in my early react days, and it felt too stupid to ask, but I couldn't wait anymore. I understand, virtual DOM is merely an object representation of the DOM in ...
thedomguy's user avatar
  • 125
0 votes
1 answer
50 views

Below is the sample code that display a checkbox to wrap content, an text input field, and a counter with a button to increment export default class App extends Component { constructor(props) { ...
lch's user avatar
  • 205

15 30 50 per page
1
2 3 4 5
15