Jimmy Thomsen

Results 97 issues of 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...

enhancement

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...

enhancement

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...

enhancement
performance
compatibility

We need to be able to format numbers with both decimal and thousand separators.

enhancement

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 bug

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...

minor bug

Being able to determine when a control is rooted in DOM would be helpful.

enhancement

It would be useful being able to populate a TreeView and DropDown from a JSON object. Example: http://fiddle.jshell.net/3cr27m6g

enhancement

![image](https://user-images.githubusercontent.com/1258714/98466489-1f7afc80-21d0-11eb-9c34-312176e75280.png)

minor bug

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.

minor bug