Databases - calculated column types #60
Labels
No Label
Bug
Deployed to: Production
Deployed to: Staging
Feature Request
Obsolete
Out-there Idea
Ready to Deploy
Regression
Scope: Code Editor
Scope: Databases
Scope: Files
Scope: Forms
Scope: Menu & Navigation
Scope: Plugins
Scope: UI Cleanup
Scope: WYSIWYG
Under Development
Won't Fix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Noded/frontend#60
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add 2 types of calculated columns:
Basic Equation Column
This will use a basic compiled equation to calculate the value of a cell. Should be able to interpolate other columns into the equation. Do NOT use eval for this. Not sure whether calculations should be evaluated on server-side or client-side, so write the code for evaluating them very generally so it can be ported over.
Plugin Calculated Column
Using the plugins system, allow the user to specify a plugin node that will be used to calculate the given column. For the plugin tag, use something like
system.database.{database id}.column.{column id}.calculated
.This plugin should provide the database ID and row data. The value of the cell is what is returned by the plugin.