Can jQuery build a DevExpress-like user interface

I tried using DevExpress controls in one of my projects for my smart and elegant interface. When I use regular html or asp controls, one of my pages is about 400K client side. Using devexpress makes this page about 1.2 MB in size, which is almost 4 times the previous version, and I used only 3 round panels and date editing.

This project was intended for use in my country, where the speed of people browsing is usually 8-16 Kbps (kilograms of BIT per second, of course :(). Therefore, using devexpress on this page makes it really difficult for users to download this page.

I heard that using jquery you can create a user interface that is almost the same as DevExpress Controls, but it will generate much less client code.

Is it possible? If so, which jQuery plugin should I use?

+4
source share
2 answers

I think you need to take a look at jQuery UI . This will allow you to create a very light and smooth interface, very easy; the only page, of course, will not come close to downloading 1.2Mb (assuming you are reasonable :).

As a starting point, I would recommend checking out demos . You can customize your build to include only those widgets that you need (you mentioned Date Edit, I don't know DevExpress, but my guess is that Datepicker probably does the same thing). You can create a theme on the Internet using the fantastic and world famous ThemeRoller application that will be used with these widgets. In addition, you can enable these libraries (jQuery and jQueryUI) directly from google CDN , which should speed up caching and parallelism (among many other advantages). Hope this helps.

+2
source

For the grid, you can check Trirand jqGrid for ASP.NET - based on jQuery and ThemeRoller

http://www.trirand.net/demo.aspx

0
source

Source: https://habr.com/ru/post/1300566/


All Articles