PC and mobile web pages adaptive (layout container control)

0
0

Can Wisej achieve a responsive layout container similar to Bootstrap 5 (which resolves to a div at runtime, not a Control or Panel), in order to adapt to layout changes when accessed from PCs and mobile devices?

Without needing to manually recalculate the size and position of all controls based on the Wisej.Web.Screen size using the SizeChanged event of Wisej.Web.Page.

Instead, can it be achieved through container controls that automatically adapt the interface for different device accesses?

“`
<div class=”row”>
<div class=”col”></div>
<div class=”col”></div>
<div class=”col”></div>
</div>
“`

  • You must to post comments
0
0

A div is an html element. A Control or Panel is a Wisej.NET class- that always “resolves” to a div.

Resolving to a div doesn’t have anything to do with responsive layouts. With plain html it’s achieved through breaks in css (bootstrap).

With Wisej.NET we have responsive properties, flow layout, flex layout, table layout, anchoring, docking, client profiles, etc.

See documentation and samples and case studies to see what is possible. We also provide training, see services page.

 

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.