Ondrej Medek
Ondrej Medek
fitparse uses many many objects and many of them are of `RecordBase`, The `RecordBase.__init__` is a bit slow. E.g. I've tried to optimize `FieldData.__init__`: ```py def __init__(self, field_def = None,...
The recommended way to listen to selected tab change is ```js myTabContainer.watch("selectedChildWidget", function(name, oval, nval){ console.log("selected child changed from ", oval, " to ", nval); }); ``` see https://dojotoolkit.org/reference-guide/1.10/dijit/layout/TabContainer.html#tabcontainer-events It...
`Dialog._dialogStack` items `focus` property is not cleared, so the 0th item may hold a reference to an item removed from DOM i.e. kind of a leak. I suggest one of...
**Describe the bug** Up down keys does not work after editing a cell - after editing an object property. **To Reproduce** Steps to reproduce the behavior: 1. Choose some class...
See bugs: GoogleCloudPlatform/google-cloud-python#2028 GoogleCloudPlatform/google-cloud-python#2166
I like the new `st:StackPanel` `MarginBetweenChildren` property. I would like to add it to the `st.AutoGrid`, too. The `st.AutoGrid` has `ChildMargin` property already. It can be overridden, when an element...
If the child has `Grid.Row` or `Grid.Column` setting, then it should be placed on proper position. Indexing should start after the specified row/column. Then it would be possible to skip...
> Garmin Connect is the most aggressive when calculating moving time, Strava is the most lenient ... Can you explain it more in detail, what are differences in the moving...
##### Expected behavior. `RegisterShortcut` `callback` should have `this` set to the active (focused) instance. ##### Actual behavior. When the command is not in the toolbar, the `RegisterShortcut` `callback` `this` is...
I use `MemberwiseEqualityComparer` for an external class, which I cannot change the code. It works great. However, I need to ommit a certain property, but I cannot add `[MemberwiseEqualityIgnore]` attribute...