'Handsontable enable mouse events for select2
How to enable mouse event for select2 dropdown embeded in handsontable pressent it works only on keyboard event only.
Solution 1:[1]
Thank you Guys! karakfa and rowboat have pointed out to locale. I found locale was set to Polish: LC_NUMERIC=pl_PL.UTF-8
The fix to my awk strange behaviour is shown on the site (above) posted by rowboat (thank you rawboat)
From that site: "The fix is to set your LC_NUMERIC or LC_ALL to C or anything else that use . as the decimal separator:" so when I've done this, I've got:
$ LC_NUMERIC="C" awk '{print $1, $2-1}' bbb
2459507.3260843 11.6077
2459507.3266052 11.6423
2459507.3271260 11.6615
as expected.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | jerz |
