Creating a Planning / Calendar Grid in ASP.NET

I am working on a prototype intranet planning application. The application is designed to plan and track advertising workers in different places at different times.

Currently, for prototyping only, I am creating a location / date data table, and from this I am iteratively creating an HTML table (asp: Table control). When visiting each cell, I request people working with this location date and fill in the cell accordingly. This is very inefficient and in the worst case will be improved by querying cached data for the entire location / date grid.

I look at templates and methods for working with scripts like this in HTML in general, maybe a visualization library for jQuery or something else, but for ASP.NET, in particular, there may be a library for implementation on GridView, etc. ..

I am going in the right direction with this, and if so, what are the recommendations regarding the previous paragraph?

+3
source share
3 answers

Why don't you try placing the calendar control on the left side, and then choose the current default date. After that, the user can select a date, and you can list the data using a gridview based on the selected date. This should also make the interface easier.

+1
source

, . , ( , , , , Telerik).

.

+1

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


All Articles