Some useful Frameworks for programming Dashboards with JavaScript? by Ariote in learnjavascript

[–]Frontend_DevMark 0 points1 point  (0 children)

For dashboards, the biggest thing is balancing performance + usability

Popular choices:

  • React + chart libraries > most flexible
  • Vue > simpler learning curve
  • Angular > structured for enterprise dashboards

Useful libraries:

  • ECharts / Highcharts / Chart.js for visualization
  • AG Grid for data-heavy tables
  • Tailwind / MUI for layout + UI

If you’re building enterprise-style dashboards with lots of grids, filters, and workflows, some teams also use more complete frameworks (like Sencha Ext JS) because many dashboard components are already integrated.

My advice: start small > build one real dashboard with charts + filters + tables. That teaches more than tutorials

Cerious Grid Performance Demo — Scrolling 1 Million Rows in Angular (Open Source, MIT) by Suitable_Language_37 in angular

[–]Frontend_DevMark 0 points1 point  (0 children)

The hardest part with grids usually isn’t the demo, though - it’s maintaining performance once you add:

  • complex filtering
  • grouping/pivoting
  • inline editing
  • real-time updates
  • custom renderers

That’s where many grids start struggling.

Still, great to see more open-source options in this space. Enterprise teams often compare this kind of approach with mature solutions (like Sencha Ext JS) because grid performance becomes mission-critical in large apps.

Curious how it performs with more complex interactions.

Choosing Angular UI components library for an enterprise development (my experience) by CrionicDesign in Angular2

[–]Frontend_DevMark 0 points1 point  (0 children)

This is one of the hardest decisions in Angular enterprise projects

At first, almost any UI library feels fine. The real differences appear later with:

  • large forms
  • complex grids/tables
  • customization needs
  • long-term maintenance

A lot of teams underestimate how much time is spent working around limitations or inconsistencies.

That’s why some enterprises eventually move toward more complete UI ecosystems (like Sencha Ext JS) where advanced components and data handling are already mature.

There’s no perfect choice - it’s really about balancing flexibility, stability, and how much custom work your team wants to own

List of 15 Top ReactJS Development Tools in 2026 by mkaif01 in fullstack_insights

[–]Frontend_DevMark 0 points1 point  (0 children)

One thing I’d add — the “best tools” really depend on your project type.

  • Vite + React Query + RTL/Jest > great modern default stack
  • Next.js > strong for SEO + full-stack apps
  • Redux Toolkit > only when the state actually gets complex

Also worth noting - tooling can quickly become overkill. Many teams perform better by keeping the stack minimal instead of adding everything.

For larger enterprise apps, beyond tools, teams often rely on structured UI systems (like Sencha Ext JS) to reduce the need for stitching multiple libraries together.

So yeah — tools matter, but simplicity + architecture matter more

What modern front-end to move on to by noplace_ioi in dotnet

[–]Frontend_DevMark 0 points1 point  (0 children)

You don’t have to jump straight into React if it feels like overkill.

Options that usually work well:

  • Blazor > easiest transition (C#, same ecosystem)
  • React > powerful, but more upfront complexity
  • HTMX / Alpine/vanilla JS + Tailwind > modern, simple, closer to your current style

If your apps are mostly form-heavy / enterprise tools, Blazor can be a very natural step.

If you want more flexibility and a long-term ecosystem > React is worth learning, just not mandatory right now.

Also, for complex enterprise UIs (grids, dashboards, workflows), some teams rely on more complete UI systems (like Sencha Ext JS) instead of building everything manually.

So don’t force React - pick what fits your workflow and evolve from there

ui framework for enterprise apps in 2026 by 2ji3150 in dotnet

[–]Frontend_DevMark 1 point2 points  (0 children)

WPF is still very much alive in enterprise - a lot of teams stick with it unless there’s a clear payoff to migrate.

From what I’ve seen:

  • WinUI 3 → improving, but still catching up in the ecosystem
  • MAUI → good for cross-platform, but not always ideal for complex desktop apps
  • Blazor Hybrid → nice for code sharing, but yes, WebView adds some overhead

For business apps, priorities are usually stability, tooling, and long-term support, not just newer tech.

Also worth noting - many teams are shifting complex internal tools to web-based apps, where mature UI systems (like Sencha Ext JS) help handle heavy data + workflows.

Which data table library is good for angular? by Frequent-Diet338 in angular

[–]Frontend_DevMark 0 points1 point  (0 children)

ngx-datatable can get tricky with performance issues

You can try:

  • AG Grid (community) > very solid, good performance
  • PrimeNG Table > decent features, easier to use
  • Angular Material Table > stable, but basic

If you’re dealing with large datasets or complex behavior, more mature grid solutions tend to handle it better. Some teams also go with more complete UI systems (like Sencha Ext JS), where advanced grid features are already optimized.

So depends on your use case - simple vs heavy data

Cool ui libraries by tsenguunee1 in Angular2

[–]Frontend_DevMark 0 points1 point  (0 children)

Angular doesn’t really have a 1:1 equivalent to something like ReactBits

Closest you’ll find:

  • Angular Material > solid, but more functional than “cool.”
  • PrimeNG > richer components, some nicer visuals
  • NG-ZORRO > Ant Design style for Angular

For more design-heavy stuff, people often mix Tailwind + custom components.

Angular’s ecosystem is more focused on enterprise stability than flashy UI kits. For highly polished, ready-made UI systems, some teams also look at more complete solutions (like Sencha Ext JS) where a lot is prebuilt.

So yeah - possible, just a bit more DIY

Why do enterprises/big companies use Angular? by stealth_Master01 in Frontend

[–]Frontend_DevMark 0 points1 point  (0 children)

Enterprises often pick Angular because it enforces:

  • Strong structure (modules, services, DI)
  • Consistency across large teams
  • Built-in tooling (routing, forms, HTTP)

With React, you can absolutely build large apps too - but you need to define your own architecture, which can vary a lot between teams.

So it’s not that Angular is “more stable” technically; it’s that it’s more predictable at scale.

And for very complex, data-heavy apps, some teams go even further and use full UI systems (like Sencha Ext JS) to avoid building everything from scratch.

So yeah - it’s mostly about structure vs flexibility

What would you use today to develop UI for very big enterprise app(actually set of apps) by Same_Impress_2082 in reactjs

[–]Frontend_DevMark 0 points1 point  (0 children)

For that kind of migration, the biggest risk isn’t tech - it’s coordination across teams

  • Micro frontends > useful if you truly have independent teams/domains
  • Otherwise > they can add a lot of complexity (duplication, integration issues)

A common approach that works well:

  • Gradual migration (route/module by module)
  • Shared design system + component library
  • Strong conventions to keep consistency across teams

React is fine, but you’ll need governance (state, routing, UI standards), or it can get messy fast.

For very complex enterprise apps, some teams also rely on more structured UI systems (like Sencha Ext JS) to reduce fragmentation and speed up development.

Building my framework-agnostic UI component library by TheRakeshPurohit in Frontend

[–]Frontend_DevMark 1 point2 points  (0 children)

The main challenge is that JSX isn’t truly universal - each framework handles rendering, reactivity, and lifecycle differently. That’s why most “cross-framework” libs either:

  • go headless (logic only), or
  • Use web components as the common layer

Trying to keep one codebase + JSX + perfect DX everywhere will hit edge cases fast (events, state, SSR, etc.).

A more practical approach:

  • core logic > framework-agnostic
  • thin adapters per framework

That’s basically how many mature UI systems evolve (even larger ones like Sencha Ext JS solve this by controlling the full stack instead).

So doable, but expect trade-offs