|
You are here |
golb.hplar.ch | ||
| | | | |
bitsofco.de
|
|
| | | | | Articles on frontend development and more. | |
| | | | |
www.raymondcamden.com
|
|
| | | | | Looking into easier ways to work with IndexedDB for client-side storage. | |
| | | | |
qsantos.fr
|
|
| | | | | Why? Well: The IndexedDB API is callback-based. With JavaScript being single-threaded, a blocking API would mean fully blocking the page, render and basic user interaction included, while the request is being processed. Although this is apparently good-enough for JSON.parse(), the W3C decided to make the IndexedDB API non-blocking. The first drafts for IndexedDB are from ... Continue reading IndexedDB is Weird | |
| | | | |
smsohan.com
|
|
| | | In a typical ASP.Net web form, we have a few controls and also validators associated with the controls. The most common validators are used for Required Field validation, Type validation, Regular Expression validation and so on. When we want to logically group the validators in a web form, we apply the same value for ValidationGroup property on the controls of a group and in this way, we create a logical division among our controls and the validation. | ||