Is it possible to do in-line row edit (double click on a row and edit it) in Grid.MVC. The documentation is here
Related
I am working on a table and creating drilldown in power bi matrix. Showing Drilldown From Member to To User. From member will drilldown to User and date. On the column header I see Instead of To User it shows First To User (red arrow). Second After drilling on the same line of From Member there is one of the To User (Blue arrow and yellow highlight) and next to it , it has SUM. Similarly at the bottom at TOTAL there is one To User Name and then SUM. My question is (1) how to remove First from the Fisrt User To. (2) How to remove Yellow Highlited Name . (3) How to remove name from the TOTAL row. Please see image for clarity. Thanks in advance for help.
Ans to question 1 Edit the column name as shown in the image. You can update it to any label you wants and the column header will show the label accordingly.
Ans to question 2 & 3 There is no exact configuration in Matrix for your scenario. In addition, adding Text column in the Values list also do not make that sense as you already facing issue with that column. In Matrix, Values column always considered for Aggregation and for Text type column you can take any of the option from - First/Last/Count. Now with those options, you can not achieve your required output.
Work around (Best for your case): This will solve your issue 1,2 & 3 together in one go. Create a Custom Column to your table as below-
date_user = your_table_name[Date] & " : " & your_table_name[user]
Now, add both your column From Member and date_user to the Matrix's Rows and Sale column to Matrix's Values property. The final output will be something like below (with my test data)-
====================================================
ADD USER DRILL DOWN
Add User(My Case Sub Category) column to Matrix row as below-
The final output will be as below-
To remove subtotals you can turn off the subtotal option at the paint roll while selecting the visual. During my test I was able to remove all totals using only this option.
Hope this solves all your questions. Feel free to add more details and I'll do my best to help.
I have been trying but I cannot edit rows. When I click the pencil icon near any row in the interactive report, I want it to take me to a separate page where I can edit the rows and update the table.
1st Step
First create a blank page
Add all those items to the page which are in the table
Add source for each items as sql query i.e Use select statement with condition.
Add an update button so that changes made are reflected to the table(You have
to use the update query by giving primary key of the table in where condition).
2nd Step
Go to the interactive report page and edit the region
Go to column link
click on the pencil icon in the left side
use your blank page no as the page to be redirected to
below you will find some blank rows as Items and Values
In Items select the item which you want to use in the where condition and value corresponding to it.
Apply Changes.
DONE
Try this.
1 - click on "Create Page"
2 - select "Form"
3 - select "Report with Form on Table"
4 - Fill the rest of the wizard
After you made this, apex create a report and when you clik on a pencil you can edit the data and save.
example:
https://apex.oracle.com/pls/apex/f?p=145797:5
I would like to add a couple of fields to an existing dataset in SAS EG. Can I do this through a properties dialog, without having to write code?
If you are in Update mode (easiest way - double click on any cell, choose yes), you can right click on a column header (the variable label up top) where you want to insert the new one and select "Insert Column".
you need to open table (douple clic on it) and try to edit (double click on the row filed) -> in pop up window select to transfer table in update mode. After its done, select whole row and in right click menu u will see add or delete rows options.
p.s. you can also add coloumns via similar manipulations.
Is there a way I could use a parameter of List as my crosstab column?
Yes you can do this in Ireport, You can do this in two way, either create a new cross tab report, while creating cross tab you can select parameter for rows and columns value, either edit the report and select that column where you want parameter value and there you can change the column by editing expression.
I want to update the slickgrid on everyrowchange in the sense after making the changes in entire row i want event to fire update.
Can anybody suggest please?
SlickGrid has no concept of editing a row, only editing individual cells. If the user edits several cells in a row, how would you decide when the edit to the whole row is complete?
If you consider the row complete when the last column is edited, you can set an event handler on cell edit for the last column and react appropriately.
You could keep an array of "Dirty Row IDs".
Then when the selected row changes, loop through your array of Dirty Row IDs and do your thing.