Vinay M
Vinay M
Maybe my question was not clear. The pivot definition looks like ```` { row_pivots: ['Term'], column_pivots: ['Currency', 'Book'] } ```` I am looking for an aggregated column total for `Term...
FYI - The workaround that we have found is running the pivot view twice. ```` view_1 = { row_pivots: ['Term] column_pivots: ['Currency'] } ```` Which gives me totals for AUD...
I solved this by forcing a regex check :P ```` const regex = /([^\d|a-z])\.(\d+)/g; return text.replace(regex, "$10.$2"); ````
Looks great. A few things if not covered. 1. It would be good if we return specific types rather than `General`, since each function already knows the resultype it returns....
Yes, we use fluxxor via childContextTypes ``` var Home = require('home'); var flux = new Fluxxor.Flux(stores, actions.methods); var iPhoneApp = React.createClass({ childContextTypes: { flux: React.PropTypes.object, }, getChildContext() { return {...
Here is a plunkr demo https://plnkr.co/edit/1DwrgrAqkakmGMamJrXr?p=preview When you click inside the iframe, `handleClickOutside` doesnt get called. https://www.evernote.com/l/ABot4Su8DvBOSruUVClLgGWoUmq3Aywe5Aw Note: I am using react-iframe-component - https://github.com/ryanseddon/react-frame-component
@Andarist Yes. We are using iframes for widgets. I will have control of the parent page as the Javascript to render the widget has to be in the parent page....
I am not sure we are on the same page here. In my example, the iframe is not listening for `click` in the `document` level. Instead the parent page is...
Yes :+1
Where i have gotten so far is add `document` variable to my context, which points to my iframe document ```` const MyComponent = () => {} MyComponent.contextTypes = { document:...