﻿//namespace PhysicianApp.PhysicianApp.Components
if (PhysicianApp == null || typeof (PhysicianApp) == "undefined")
    var PhysicianApp = function () { }

if (PhysicianApp.PhysicianApp == null || typeof (PhysicianApp.PhysicianApp) == "undefined")
    PhysicianApp.PhysicianApp = function () { }

if (PhysicianApp.PhysicianApp.Components == null || typeof (PhysicianApp.PhysicianApp.Components) == "undefined")
    PhysicianApp.PhysicianApp.Components = function () { }

if (PhysicianApp.PhysicianApp.Components.GeneralSearch == null || typeof (PhysicianApp.PhysicianApp.Components.GeneralSearch) == "undefined")
    PhysicianApp.PhysicianApp.Components.GeneralSearch = function () { }

PhysicianApp.PhysicianApp.Components.GeneralSearch.DropDownOpening = function (sender, eventArgs) {
    if (sender.get_text().length < 3)
        eventArgs.set_cancel(true);
}
