fit-ui 2.5.2 → 2.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Fit.UI.js +4 -4
- package/dist/Fit.UI.min.js +1 -1
- package/package.json +1 -1
package/dist/Fit.UI.js
CHANGED
|
@@ -648,7 +648,7 @@ Fit._internal =
|
|
|
648
648
|
{
|
|
649
649
|
Core:
|
|
650
650
|
{
|
|
651
|
-
VersionInfo: { Major: 2, Minor: 5, Patch:
|
|
651
|
+
VersionInfo: { Major: 2, Minor: 5, Patch: 3 } // Do NOT modify format - version numbers are programmatically changed when releasing new versions - MUST be on a separate line!
|
|
652
652
|
}
|
|
653
653
|
};
|
|
654
654
|
|
|
@@ -19203,7 +19203,7 @@ Fit.Controls.WSDropDown = function(ctlId)
|
|
|
19203
19203
|
|
|
19204
19204
|
// Create ListView
|
|
19205
19205
|
|
|
19206
|
-
list = new Fit.Controls.WSListView(
|
|
19206
|
+
list = new Fit.Controls.WSListView(me.GetId() + "__WSListView");
|
|
19207
19207
|
list.OnRequest(function(sender, eventArgs)
|
|
19208
19208
|
{
|
|
19209
19209
|
if (fireEventHandlers(onRequestHandlers, list, eventArgs) === false)
|
|
@@ -19255,7 +19255,7 @@ Fit.Controls.WSDropDown = function(ctlId)
|
|
|
19255
19255
|
|
|
19256
19256
|
// Create TreeView
|
|
19257
19257
|
|
|
19258
|
-
tree = new Fit.Controls.WSTreeView(
|
|
19258
|
+
tree = new Fit.Controls.WSTreeView(me.GetId() + "__WSTreeView");
|
|
19259
19259
|
tree.Selectable(true); // Make nodes selectable by default when added
|
|
19260
19260
|
tree.Width(100, "%");
|
|
19261
19261
|
//tree.Lines(true); // DISABLED - lines do not scale with font size
|
|
@@ -19413,7 +19413,7 @@ Fit.Controls.WSDropDown = function(ctlId)
|
|
|
19413
19413
|
|
|
19414
19414
|
var skipUpdateActionMenuOnChange = false;
|
|
19415
19415
|
|
|
19416
|
-
actionMenu = new Fit.Controls.ListView(
|
|
19416
|
+
actionMenu = new Fit.Controls.ListView(me.GetId() + "__ActionsListView");
|
|
19417
19417
|
actionMenu.OnSelect(function(sender, item) // Using OnSelect instead of OnItemSelectionChanging since DropDown fires OnItemSelectionChanging when selection is changed, which would result in OnItemSelectionChanging being executed multiple times
|
|
19418
19418
|
{
|
|
19419
19419
|
if (item.Value === "SearchMore")
|