I have custom grid in which I have grouped the collection by order created date.However I found the weird issue that though default grid allowed to filter the dates I was not able to filter the grid with date.
Please help me.
Related
I would like to know if there is any event that I can use while grouping to add an additional subtotal row(on top of each total) for each grouping key.
By Default afterInsertRow does not fire if grouping is enabled.
Any way to achieve this?
More details updated:
Hi Oleg, currently I am grouping the jqgrid by category column(I am displaying list of products). So for each category I am able to see the total column(summary). This works perfectly fine when I am fetching only active products. But I have a scenario when I am showing Active and inactive products the I want to additionally add another subtotal summary row where I aggregate only the inactive rows. The total summary row for each group should aggregate active and inactive rows and that is working fine as well. I just need a way to display the subtotals summary row only for inactive rows. This subtotal row should sit just above the total row for each group. I hope this makes sense you to.
I hope that I correctly understand your requirements. Probably you can just group by two columns groupField: ["category", "inactive"]. You can additionally consider to display the summary in the header: groupSummaryPos: ["header", "header"]. As the result you will have not exactly what you asked, but the grid will have very close information.
Is it possible, and if so, how, to implement drill down in Kibana 4?
For example, lets say a dashboard has a pie chart which represents products.
Beneath that, there could be a table which shows component parts which are used to make products, together with supplier name, cost, availability, and other details. Clicking a product in the pie chart will filter the table to only show parts for that specific product. Selecting the supplier field would drill to another table showing the details for the supplier.
This requires that there be a multi-column table widget which would be used to display the details for each part, and that each column in the table could potentially be a link to another table.
In addition, lets say that there are three charts at the top of the dashboard. Clicking on each one should swap out the area below to display a table with a specific query and data columns relevant to the selected chart.
Is this kind of functionality abailable in Kibana?
You can mostly achieve this type of functionality in Kibana 4. What you'll want to do is create a search that has the fields that you want to display and save that. Next you'll create your visualizations that have the things you want to drill down on.
Finally, create a dashboard with all of the visualizations on it, and then also add the Search (when you hit +, there's a tab that says Searches. Choose your saved search there.
When you click on your widgets, it will start adding filters and refreshing the page, including your "search".
On the search widget that's on the dashboard, you can click on the rows and they will expand to show the fields. Next to each field is a +/- that will let you filter to that value or exclude that value.
I Think Kibi has this feature But again I think it is for relational database tables
Please refer to this issue
https://github.com/elastic/kibana/issues/4439
I am working on a task to show Date Range on Dashboard chart. so data chart will display on custom date range selection. I have added calendar on chart but result is not coming properly. I know its very specific requirement. I am looking if someone has already done such modification and can provide me some guidence to achieve this.
The data displayed on the dashboard comes from tables aggregated by a cron every day for product viewed and bestsellers. It is calculated and displayed accordingly. If you want to have a date range, you need to use the ones that are aggregated daily and group by product_id. For orders, you can use the function setDateRange existing in Mage_Reports_Model_Resource_Order_Collection.
I want to filter rows by columns, so that i can choose multiple items in filter column dropdown (items in dropdown is preferable to be checkboxes). Can you show me an example please?
At present, both the ASPxGridView/MVC GridView Extension do not support multi-select filter.
There is a request regarding this improvement:
Pivot Like Multi Select Filter
Set the column's OptionsFilter.FilterPopupMode to CheckedList.
http://www.devexpress.com/Support/Center/p/Q250696.aspx
In my datagridview there are two dependent columns, one is category and the other is items. So I want to filter my item column list as per selected category.
But the problem is that when I change the category wise data to datasource of items combobox, previous selected items names disappear because previous items is not in current datasource.
So what is correct solution of such problem.
Filter columns with a Dataview: http://msdn.microsoft.com/en-us/library/system.data.dataview.aspx
Depending on input validation and what not, you can update the DataSource after an edit operation.