-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Widgets to Support Fullscreen Mode #48
Comments
+1, perhaps put together a PR when you get a chance? I'd still like to tackle #11 first. |
Thanks Andy, yes we expect to take up this work when it becomes priority over the next month. Wanted to get it in the backlog as it was part of our discussion in our call. |
👍 this would be really nice to be able to see details for complex charts- |
Exactly my use case @cm325 @andyperlitch been quiet the last few weeks preparing our dashboard for production release: we have established a private dashboard "webapp" repo, https://github.com/thomsonreuters/, and I have been working on deployment automation and configuration with puppet, etc...this stuff is all quite proprietary to our environments obviously! Expect to be back on dashboard product functionality early July...first pull request will be for the "clone widget" functionality, which I need to add to your backlog. On Fri, Jun 13, 2014 at 8:22 PM, chris marx [email protected]
|
removing this from 1.0.0. PRs welcome. |
Sorry this missed the boat, will try and progress if I can before too much On Friday, 13 March 2015, Andy Perlitch [email protected] wrote:
|
I have a beta on the Widget Maximize/Restore dashboard feature. If anyone's interested, I'll email you the code details. Just comment here, if that's appropriate. |
That's great @robertmazzo, just fork this repo using button on the top right and push your change up for us to check it out, later we can convert to a PR. |
Hi @robertmazzo still interested in this feature, any chance you still have your code. Happy to exchange via email? |
I'll dig that up and post it.
To: DataTorrent/malhar-angular-dashboard [email protected] Hi @robertmazzo still interested in this feature, any chance you still have your code. Happy to exchange via email? — |
Very good of you @robertmazzo, much appreciated! On Fri, Apr 15, 2016 at 6:08 PM, Bob Mazzo [email protected] wrote:
|
Hi Andy, In the dashboard
|
That gave me a fantastic head start, thanks again @robertmazzo Was able to fork and branch from malhar 1.0.1, the version I currently consume: https://github.com/awashbrook/malhar-angular-dashboard/tree/bobs-maximize Incorporated your code stripping out the kendo specific code and can see maximize working for both width and height, in the malhar demos :) It would be great to fix the restore function, which errors with undefined How far were you able to investigate saving the ht/width to scope, as per your own comments? |
Oh darn. The"fixedSize" property has to be on the Widget definitions. So sorry. Bob From:"Andy Washbrook" [email protected] That gave me a fantastic head start, thanks again @robertmazzo Was able to fork and branch from malhar 1.0.1, the version I currently consume: https://github.com/awashbrook/malhar-angular-dashboard/tree/bobs-maximize Incorporated your code stripping out the kendo specific code and can see maximize working for both width and height, in the malhar demos :) It would be great to fix the restore function, which errors with undefined widget.fixedSize at https://github.com/awashbrook/malhar-angular-dashboard/blob/bobs-maximize/src/components/directives/widget/DashboardWidgetCtrl.js#L117 How far were you able to investigate saving the ht/width to scope, as per your own comments? — |
Thanks Bob :) Your fixedSize approach is now working with malhar ‘resizable’ demo widget:
This allows us to maximize successfully and then restore to a statically pre-configured size. |
That's Andy. And yes indeed, the optimum approach would be as you said - dynamically save the resized attribute values. Best, Bob From:"Andy Washbrook" [email protected] Thanks Bob :) Your fixedSize approach is now working with malhar ‘resizable’ demo widget: { name: 'resizable', templateUrl: 'app/template/resizable.html', attrs: { class: 'demo-widget-resizable' }, size: { width: '350px', height: '400px' }, fixedSize: { width: '350', height: '400' } }, This allows us to maximize successfully and then restore to a statically pre-configured size. — |
Widgets to support full screen mode.
Want something similar to full screen edit mode "Zen Mode" in github. Although obviously Zen mode takes away distractions, whereas we imagine people wanting to quickly zoom into widget chart, maxing out available space in browser window...in fact gmail fullscreen for composing introduced over last year may be the best user experience to kep in mind!
We may be able to leverage jquery fullscreen, here is one tutorial: http://tutorialzine.com/2012/02/enhance-your-website-fullscreen-api/
Full screen icon would naturally be offered next to existing gear icon for editing.
The text was updated successfully, but these errors were encountered: