Tagged Questions
10
votes
4answers
4k views
Rails dashboard design: one controller action per div
I am implementing a dashboard as a relative Rails newbie (more of an infrastructure guy). The dashboard will consist of multiple pages, each page of which will contain multiple charts/tables/etc. ...
7
votes
2answers
736 views
Application Dashboard View Logic
In my application I would like to provide a dashboard like screen when they login to get an overview of what is happening. I have about 4 models I would need to collect data from and sort them into ...
3
votes
3answers
4k views
Building an analytics dashboard in Rails
I'm looking to build a Rails app to do internal reporting (make charts or general data visualizations, create reports, show statistical analyses, etc.) on data my company collects.
What would be ...
3
votes
2answers
2k views
Web data visualization/charting library
I'm building a Rails app that needs some data visualization. What is a good library to learn? (If it matters, I don't have much web/javascript experience, but I'm starting to learn.)
I've been ...
3
votes
1answer
433 views
rails activerecord statistics/trends/time-series graph data
We are in the process of building dashboards for users where in they can see the trends/time series graphs of various activerecords; take a blogging site as an example. There are posts, each post has ...
2
votes
1answer
1k views
rails 3 - user dashboard
I'm looking at creating a dashboard for a logged in user which would then query the display other models data.
Would the best way to do this be to use something similar to this post: Map URL ...
1
vote
4answers
2k views
Rails controller design pattern for dashboard
I would like to have a Dashboard page that gather information from multiple models to a summary view (without its own model). How should I go about it the Rails way? Should I create a ...
1
vote
4answers
542 views
technology recommendation for LAN Dashboard
I'm about to start a fairly large project for a mid-sized business
with a lot of integration with other systems (POS, accounting,
website, inventory, purchasing, etc.) The purpose of the system is to
...
1
vote
0answers
148 views
Adding Helpers to ActiveAdmin Dashboard
Does anyone know how to add helpers to the dashboard? I've added a filter to the dashboard, but will need to get the filter params from the URL. Instead of repeating code to strip the url for the ...
0
votes
2answers
757 views
Best way for drag and drop dashboards
Is there any jquery plugin for creating iGoogle style dashboard? So basically drag n drop style etc.
Possibly a way to save the location of the widgets into a database in ruby on rails?
0
votes
2answers
48 views
how to deactivate and activate users from application in ruby on rails
I am implementing dashboard facility in my ruby on rails application where only Admin can enter and see all users which are registered with application. From dashboard, admin can deactivate or ...
0
votes
1answer
51 views
Display posts by a certain user
In my rails app, I need to display on a users 'dashboard' posts in which that user had made.
Dashboard Controller :
class DashboardController < ApplicationController
def index
@users = ...
0
votes
1answer
40 views
Gravatar - Undefined method 'email' for nil:NilClass
I've set up gravatar and have got it working for my 'users/*user id goes here*'.
But whenever I try to use it in dashboard/index that's whenever it gives me the error
Undefined method 'email' for ...
0
votes
0answers
67 views
dashboarding packages [closed]
i'm looking into dashboarding packages in order to create custom views of various kinds of data from various data sources. preferably, each dashboard can be customised with many widgets that could ...
0
votes
1answer
220 views
Add class code to active admin dashboard
Ok, the exact cause is that I want to restrict new relic to gather data from admin interface, so I need to put:
newrelic_ignore
into the classes that shouldn't add new relic tracker. In resources ...