**root/app.js** Ext.application({ name: 'HaBoMobile',
Kendo UI Window (Javascript)
This snippet will help you to setup your **Kendo UI Window** widget using JavaScript. Create a common Kendo widgets reusable functions in a JS file. I named it **KendoCommon.js** function showKendoDialog(title, content, width, height, modal) {
SQL Server Fuzzy Search - Levenshtein Algorithm
SQL server provides `SOUNDEX()` and `DIFFERENCE()` functions to achieve fuzzy match by pronunciation. -- Using SOUNDEX SELECT SOUNDEX ('Smith'), SOUNDEX ('Smythe');