Everytime I put a graph in a dashboard it sets the title to the name of the dataset (report).
I'd like to decide it by myself. I searched a solution but i could not find it.
With Microstrategy desktop you can edit a graph (you can just double-click on it or click the edit icon), select the graph title and right-click, now you should have an option to Edit it.
Otherwise you can reach the section Titles and modify the Title.
Related
Is there a way to select filters with “OR” operator in Kibana 4?
e.g. I’d like to use filters like
PlatformName:"window" OR PlatformName:"linux" OR PlatformName:"android"
(PlatformName is a field)
I refer to this page to use filter.
https://www.timroes.de/2015/02/07/kibana-4-tutorial-part-2-discover/
"You can expand any field in the fields list on the left by clicking on it. It will reveal the list of the most common values for that field. Use the – and + magnifier icons to quickly add a filter for to show only documents having that value (+) or to exclude all documents with that value (-).
If you add filters that way, a bar will appear on the top below the search bar. Each filter will be displayed as a tag, that you can disable temporary or remove completely."
I found a similar question here:
OR filter on dashboard in Kibana 4
Definitely you can add OR filters in your dashboard. As dashboard is created from saved visualizations, In your visualization you can add filter containing OR which will reflect such data.
As per my understanding of your question I am posting my answer (Feel free to correct me):-
Clicking on pie chart under visualize tab (Create a new visualization).
Selecting a search source - From a new search
Go to Split Slices, select aggregation as filters.
Under Query1 enter the filter you want to apply such as PlatformName:("window" OR "linux").
Click on add Filter and add Query2 as: PlatformName:("android" OR "linux").
Click on Apply to view the changed pie chart as per filters.
Save Visualization by selecting it from toolbar (2nd option beside search bar).
Go to Dashboard & Click on Add Dashboard & select your saved visualization which will reflect your pie chart.
Hope it answers your question :)
My clients need to have the Mail Merge option in the Sales/Invoice tab. I'm trying to add the Mail Merge button to my Invoice Entity in CRM 2013, using Ribbon Workbench. It looks pretty simple when I read the materials for it. Here's a simple tutorial about that:
http://www.blog.affiliatedcrm.com/adding-the-mail-merge-button-in-dynamics-crm-2013
The thing is that I follow all of the above steps (not only in this particular tutorial. I tried 4-5 other sources as well), but as you can see in the picture below, the button and the function for it appears in the Ribbon Workbench, but not in the actual form.
Here you can see that the button is created in the ribbon: http://imgur.com/zsgPiaB
But it is not on the Invoice tab. I'll post the picture in a comment bellow, because I dont' have enough rating to post more than 2 links.
I noticed that if I create just a button / without a function attached to it / the button appears in the Invoice form, but the moment I put a command to go with it, the button itself disappears.
Please, help me get this Mail Merge function working.
The reason that the button isn't showing is that it has a Display Rule that hides it if Mail Merge is not enabled on the entity. Invoices do not support mail merging so it will not show.
Scott
I have a WordPress blog that let users (only for internal usage) write reports. There are "tasks" that they can select (checkboxes) to include in the report. Those that are selected pop a title and blank text zone on the bottom to include some informations. There is a task that is for feedback.
My question: I wanted to know if it is possible to replace the text zone with a form? Or add the form inside the text zone?
This is what the tasks list looks like, using the twentyten theme and ACF;
One of the tasks (checkboxes) is for feedback. I would like to have a complete form instead, with questions like "Did you see that?" with checkboxes, if they check "yes" then a text zone pop under it so people can write down feedback on that.
I cannot simply do a different type of page with a form and that's it, as the feedback is related to the tasks (to one specific report). It needs to be "inside" the report.
It seems impossible since one checkbox (for the tasks) only open one "thing" like a text zone. But I still hope there is something I can do.
Is there a way or it's impossible?
Thank you very much for all of your help.
Have a nice day.
This is accomplished using conditional logic within the Advanced Custom Fields Plugin. Go to Custom Fields -> Edit the Group you want to change -> Edit the Field you want to be conditional -> Turn Conditional Logic on and add your conditions.
I have a site running in Drupal 6 and I'm using Views to display content from several feeds I am importing.
There is a node being created in one of the feeds that I do not want to have shown (or even created at all, if I can help it) & there doesn't appear to be a way to negatively filter out nodes from being displayed by title. Is there a way to do this with any efficiency or might there be some other hack around this?
Thanks in advance for any help you can provide.
-B
Views does allow you to filter out a node with a specific title. On the edit-view page, do the following:
Click the [+] on the Filters box
Check 'Node: Title' and click [Add]
Select 'Is not equal to' as operator and enter the unwanted title as value
Click [Update] and save your view
Why don't you just unpublish the nodes you don't want and add a filter for 'node:published = yes'. Unless the nodes you want to hide always have certain words in the title it will be hard to do it with a title filter.
How can I embed a node on the front page in Drupal 6. The node basically has the image upload field along with title and description. I want it to some how appear on the homepage alongwith a "views" which shows the uploaded images at the bottom.
What I want is to give the users an ability to create content which is right now available at .../node/photo/add. I want to somehow show this box which lets one create content i.e. upload photo with title and description on the homepage.
It's basically just an attempt at creating something like imageshack as an experiment.
I am pretty n00b when it comes to drupal so please be more descriptive.
Jukebox's solution works as a point-and-click method. If you want to do it with code, it's more like this:
create a glue module Handbook | Example Blog Post
turn it on in admin/build/modules
create a menu item using hook_menu() that will become the page
embed the node with node_view()
embed the view (blog post)
in admin/settings/site-information set your page to the
You can use the Node Blocks module to, well, turn your node into a block. This means that you can go to the /admin/build/block page and place your node in a particular region.
After installing the module, edit the Content Type of the node you want to turn into a block. Under Workflow Settings, Available As Block, choose Enable.
Now you can go to /admin/build/block and you can see some new blocks. Just choose the one you want and place it in the region of your choice. You can also configure that block's visibility settings from there as well.
If your planning on having a more complicated home page at any point in the future I'd highly recommend using Panels to do this. It will allow you to arrange your front page with views and nodes in a grid method.