Jimmy Thomsen
Jimmy Thomsen
Make sure objects are created with the 'new' keyword. ``` // WRONG! // Won't fail but no instance is returned. // input1 remains 'undefined'. var input1 = Fit.Controls.Input(); // Correct...
1. Update Fit.UI used in JSFiddles 2. Add new Dialog demos - perhaps a "dialog generator" like [this](http://jsfiddle.net/s2bofv8x/35/) 3. Make sure demos do not initialize controls with Fit.Data.CreateGuid() as this...
Avoid using delete on object properties for "hot code" (code called many times). It might hurt performance in optimization compilers such as TurboFan (Chrome). Also, getting rid of this will...
We need to be able to format numbers with both decimal and thousand separators.
Consider the following call: Fit.Validation.ExpectInstance(sender, {}); The following error will be thrown because {} is not callable: VM1662:1 Uncaught TypeError: Right-hand side of 'instanceof' is not callable The function is...
Minor issue: Although the use of ValidationExpression and ValidationCallback is probably rare on TreeView, the feature is still exposed and could potentially be used. It's inherited from ControlBase. The control...
Being able to determine when a control is rooted in DOM would be helpful.
It would be useful being able to populate a TreeView and DropDown from a JSON object. Example: http://fiddle.jshell.net/3cr27m6g

Currently the search function exclude pages with Accessible set to False. But pages with Allow Indexing set to False should be excluded from search results as well.