Insert comments in a VEEML story - database

Can I add some “text” in my VEEML story? For instance, I would like to add a first section “methodology” with some statements, pictures, etc.

VEEML allows you to add comments within the story.
They can be placed wherever you want on the story page.
1/ Select the Section where you want to add a comment
2/ Click on the "New Chart" button on top of the story
3/ Define the size of your comment (15% , 33%, 50%, etc of the line)
4/ select the "Rich Text" button in the graphs selection space
5/ Write your text
6/ Validate with "APPLY"

Related

Ant design - Multiple expanded content to display

How can I have possibility to choose which content should be displayed after row expanded. I need to be able to show if I just click on a row. But if I click pencil icon in the right side of the row I need to see on expand.
So i also don't know how to understand on expanding whether the pencil was clicked and what id of the row is so that I was able to display form according to data in the row.
I have an idea that expandedRowRender prop should be used. But couldn't reach the solution by far
Could be done by using two expanding Icons with different logics. But how?

Column collapsible to a button on mobile

I have a 2 columns page and I want that on small screens the first column to be replaced by a small column with just a button on it. When you click the button the original first column appears again (like it is on Wordpress for example).
Thank you.
You cannot reduce a column into a button on a breakpoint (not without adding a lot of code), but you can:
Add a new column with class="column small-12 hide-for-medium", and put the button there... this will keep the column hidden from medium up.
The collapsible column (the first one) will have the class hide-for-small-only, so this will be hidden on small breakpoint; please add an id to this column.
Using jQuery, on the button click, hide/show the first column (the one with the ID, you sould use slideToggle() from jQuery), and that's it.
Hope this helps.

How to disable titles and arrows in angular-bootstrap-datetimepicker?

How do I hide (or disable) the title and arrows when I'm using time only?
I'm using angular-bootstrap-datetimepicker v1.1.4
https://github.com/dalelotts/angular-bootstrap-datetimepicker
If you just want the times shown for a particular date and do not want the user to navigate out of it, an option you have is to hide the top section (the left arrow, date title and right arrow). Since the calendar is defined within a table, the change to do this is pretty simple; just add a css property to hide the thead of the datetimepicker. Note you'll probably still want to look for date change events and such and disable them. Take a look at the jsfiddle below, with a working example:
jsFiddle

Add additional tab within access

I'm not sure if this is possible but here goes. What I wish to do is create an additional tab within my report as I wish to add an extra text box after details.
When adding the textbox within the details tab it repeats after every grade as shown below.
If the textbox is placed in the footer it only shows at the bottom of the page shown below.
I wish the textbox to appear as shown in the image below.
Ideally I would like to add an additional tab below details within the design view to place this textbox and a page break. Shown below is the design view.
If anyone can give some light on how this can be done that would be great.
Thank you for your time
You need to switch on the Footer for the Students_StudentID section.
This is done in the Group, Sort and Total pane.

Styling views in Drupal 7

I developed a content type of "sale car". Now I'm developing its view to display a brief list of Car Ads with some basic fields (car, model, color, price, link to full ad) inline of each other like this:
BMW, 120 d $X,xxx,xxx.xx
Royal Blue, Automatic, View Ad
I'm wondering how can I achieve this style? What style format I should use: Table, Grid or something else? Or do I need to get it done through coding?
You want to create a view that is a list of fields.
Once you've got this, add the relevant fields into the view and you should be done.
Choose the relevant format from the format link, check the preview and you should have your view.
To create the view structure:
Node 1 Node 2
Field 1 Field 2 Field 1 Field 2
Field 3 Field 4 Field 3 Field 4
Add all four fields to the view. On each one select "exclude from view". At the bottom of the field list, add a new "custom text" field.
Do exclude this one from the view though, that's important.
Go into the custom field and in the textarea you can enter HTML code and use the replacement patterns to output the field.
For example:
<h2>[title]</h2>
<ul>
<li>[field_one_name]</li>
<li>[field_two_name]</li>
</ul>
<ul>
<li>[field_three_name]</li>
<li>[field_four_name]</li>
</ul>
Get the name's from the Replacement Patterns box under the textarea.
Then select whatever format you think is right. I think you're after a grid.
Drupal provides a way to style the view.
Go to your view.
Click on 'Advanced' link at right side.
Click on link after the label 'Theme'.
You will get the list of templates used to style the view.
Create your own template with one of the given name in the list for
specific fields. e.g. views-view--VIEWNAME.tpl.php
You will get the view of your own style.
This is how the Drupal views styling works. :)
Styling views in Drupal 7:
Add field(which to display) and check the option "Exclude from display".
Now go to "Rewrite Results" and check the option "Rewrite the output of this field"
and below there is a section called "Replacement patterns" where all the added
fields appear as a variable(saying variable just for easy understanding)
Like :
[title] == Content:
Title[field_event_date] == Content:
Event Date[body] == Content:
Body[body-value] == Raw value
Above there is a text ares called "Text" where you can customise your style
for this field(Not good practice follow step 4 for better)and clicl "Apply All".
Now add one more field(this is an extra field) called "Global: Custom text"
DO NOT check "Exclude from display" and below text area called "TEXT"is
the area where we will be writing our HTML codes for styling the views
using all the fields which are avalable as token here under the option
"Replacement patterns".
Click on the "Apply All", And YES its done.So simple and cool na??

Resources