How to set datepickerOptions in daterangepicker to set default date - daterangepicker

I want to set Default date in regional format to dateRangePicker . But having trouble in settting it.

Click on given link and read it's documentation carefully.
http://glad.github.io/glDatePicker/#examples
Hopefully, You will able to get resolve.

Related

How to change format of date in smart-table

i'm using Smart-Table in my mean.js app, and i need change format of date values. For default format is "MMM, dd yyyy" and I want to change it to "dd-MM-yyyy". Anybody can help me?
As mentioned in angular documentation you can change the format of the angular date filter
so your markup cood look like
<td>{{myDateValue | date:'dd-MM-yyyy' }}</td>

How to use d3.js custom locale?

I dont find any example for how to use d3.locale.
D3.js Documentation page says we have to set variable while putting.
But i am not clear about this.
Can any one help me, how to use d3.locale time format or suggest any examples

Change text of Please fill out this field tooltip in Joomla 3

It is set by default that when I create input fields and set them to be required, when users don't fill in anything, they got a massage:
Please fill out this field
I am creating a website with Joomla, and this tooltip pops out in every browser displaying the above text. How to change the text.
I tried to look up in Joomla language ini files, but no success. Is there some easy way to change this, or some advice where it could be?
This is not a Joomla string, it's the message displayed by the HTML5 required attribute. To change the message you have to check the loads of suggestions in the following questions:
HTML5 form required attribute. Set custom validation message?
How to change default “please fill out this field” in two field
if you are writing your own component (or module/plugin), it sounds like this is the description - field in the form-xml for your component. If the form is auto-generated from a component-creator, the file should be found in
/(administrator/)components/com_yourcomponent/models/forms
but some more info on where/what you are doing would help.
regards Jonas

Getting article create date joomla

I'm trying to get article's created timestamp or date so I can format it with css. I've searched on google and on the forum but, I'm confused on the result.
I've done this:
echo $this->article->created;
echo $this->item->created;
And is giving me a blank result.
What am I doing wrong?
Looking at the page layout
https://github.com/joomla/joomla-cms/blob/2.5.x/components/com_content/views/article/tmpl/default.php#L114
Line 114 you see how the date is rendered in 2.5.
<dd class="create">
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
So to style it you can just use the create class or you can make a layout override.
This is assuming you want it in an article. If you want it in a list or something look at the appropriate layout for that. And if you want to override the date format itself do that in a layout override.
The element you want seems to vary by version, so make sure whatever you are cribbing off of, matches your installation.
First of All where you are trying to display the created date.
1) In normal article views like default joomla catgory ,blog or any other view.
You should check the following.
The article options that available on the right side options of articles the created date is show true.
Then Also make sure If it assigned to a menu there also these options available there also
make true.
Then you will get the created date in the articles default view.
2)If you are trying with a custom code section you can find some codes like this.
$useDefList = (($params->get('show_author')) OR ($params->get('show_category')) OR ($params->get('show_parent_category'))
OR ($params->get('show_create_date')) OR ($params->get('show_modify_date')) OR ($params->get('show_publish_date'))
OR ($params->get('show_hits')));
on the article default view of joomla.In any version of joomla these should be based on article options values.
Hope this may help you...

How to I put time in my website's tab?

I was wondering if any of you can tell me how I can put the time in my website's tab. Heres an example: http://blog.wearebuild.com/
As you can see on the top (where the title is), it says "Build - We do Print - 22.10"
I am using DreamWeaver to design this website.
Thanks in advance!
You have to use JavaScript to modify document.title to dynamically alter the page's title. If you want to insert the date/time you can use JavaScript's Date object.

Resources