User interactive abstractions handling at asp.net MVC

User interactive abstractions handling at asp.net MVC

This answer on StackOverflow inspired me to write a full post about handling user interactions in desktop applications fashion using web sockets and ASP.NET MVC.

The main idea is to send commands to user interface from server-side code and handling the result on server side. As you know, the main problem in web is in the following, web working on request-response system, that means, when user send request to server, it generates the resulting markup for view. After it server waits for another request and so on.

I recommend to read this post, if you are interested at web development. If it would not be helpful for you, it could help you to understand some principles of architecture with web sockets.

Continue reading “User interactive abstractions handling at asp.net MVC”

Javascript frameworks everyday problems

Javascript frameworks everyday problems

Introduction

As both frontend and backend web developer, I have to deal with different js frameworks. No one is perfect. In this article I am trying to collect a part of my experience with couple of popular frameworks, such as jQuery and Kendo UI. Someone thoughts that jQuery is not necessary, because today exists some more valuable javascript stuff like ReactJS, AngularJS, #insertYourCaption#JS… I used these only for getting some knowledge on it, and do not used it in real life projects. Everything what is wrote here is only my opinion and it can be opposite to real situations.

Continue reading “Javascript frameworks everyday problems”

Life on Mars? Some thoughts on

Life on Mars? Some thoughts on

Head photo taken from http://yournewswire.com/nasa-finally-find-evidence-of-life-on-mars/

Mars colonization is kind of interesting initiative. It is fascinating to read technical features for securing the life and Mars human base. What about human leisure?

The very first item is connection to the earth friends of martian people. How would they connect? If it will be provided via space discovering corporation, the whole communication will be published to the mass media. And if will be something private only for two people? Will it be read by the third side? I think, it will, so the longer it least, the faster people on Mars will lose their friends, as they can not speak about something special only for friends.

Continue reading “Life on Mars? Some thoughts on”

Kendo UI for ASP.NET MVC grid virtualization to remote data

Although there is documentation and demos for implementing binding to remote data, it can not be applied to the three-layer architecture. For example, if your web application does not have any local database and for displaying it’s content it is connected to the separated application via WCF or WEP API, which returns required data and you want to implement virtualization (or paging) including the set of basic grid operations, such as filtering, aggregations and sorting.

The following article could be useful if for the data retrieving you need to create instance of IQueryable and then working with the result of this query, also you does not trust Kendo UI .ToDataSourceResult() method, or want to implement some additional work on results, or you have some unrecognizable problems with using it.

Continue reading “Kendo UI for ASP.NET MVC grid virtualization to remote data”