Fit.UI
Fit.UI copied to clipboard
Fit.UI is a JavaScript based UI framework built on Object Oriented principles
See the following example: https://jsfiddle.net/9zca6kf1/1/ ``` Fit.Events.OnReady(function() { // Create DropDown var dd = new Fit.Controls.WSDropDown("WSDropDown1"); dd.Url("https://fitui.org/demo/GetUsers.php"); dd.JsonpCallback("JsonpCallback"); // Loading data from foreign domain dd.MultiSelectionMode(true); dd.Width(400); dd.DropDownMaxHeight(150); dd.OnRequest(function(sender, eventArgs) {...
See the following example: https://jsfiddle.net/475aobj9/2/ ``` Fit.Events.OnReady(function() { var dd = new Fit.Controls.WSDropDown("WSDropDown1"); dd.Url("https://codemagic.dk/FlowIT/jsfiddle-dfva8mxh/data6.json"); dd.GetTreeView().OnPopulated(function(sender) { dd.GetTreeView().SelectAll(true); }); dd.MultiSelectionMode(true); dd.Width(400); dd.DropDownMaxHeight(150); dd.TextSelectionMode(true); dd.UseActionMenu(true); dd.InputEnabled(true); dd.Render(document.querySelector("#DropDownContainer")); window.dd = dd; }); ```...
Invoking Fit.Events.GetPointerState() after opening a `` dropdown control using the mouse on Safari on Mac, will incorrectly indicate that the primary mouse button is still being held down, because Safari...
Control events such as OnChange and OnBlur might receive _null_ instead of a reference to the given control, if the control is disposed from another OnChange or OnBlur event handler....
See the example below. This will cause an error in the SimpleDocs parser due to the use of `&&`. Encoding them as `&&` resolves the problem, but it makes it...
**Fit.Dom.Text(elm):string** does not preserve linebreaks on modern browsers due to the use of textContent. Consider using innerHTML, replace `` with `\n`, strip HTML, and replace HEX and HTML entities with...
A draggable element will have its z-index increased by 1 every time the element is clicked/touched, to make sure it remains on top of other draggable elements - just like...
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...
This bug report is a result of the implementation of Image support in the HTML Editor - see #100 By default the base64image plugin opens the image dialog when double...
Assigning a value containing image tags results in these image tags being lost unless image support is enabled. Furthermore if images are contained and image plugin is enabled, but image...