Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
Recent Tutorials
Top posting users this month
Top Achievers
Who is online?
In total there are 7 users online :: 0 Registered, 0 Hidden and 7 Guests :: 2 Bots
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
Widget : Notepad
Page 1 of 1 • Share
With this widget you'll be able to jot down personal notes directly on your forumotion forum, so you can remind yourself about something later on.
The notes are stored in your browser locally using the Storage API or Cookies. Before you install this widget here are some important things to note about this module :
If you want to install this widget please continue.
To install this widget go to Admin Panel > Modules > Forum widgets management and create a new widget
Widget name and Title : Notepad
Use a table type : Yes
Widget source :
Once you're finished click the save button and then drag and drop the widget into the column you want. After that you should be able to write yourself as many reminders or notes as you like !
If you want to make some modifications to the colors of the notepad you can change them by modifying the CSS at the top of the widget :
Note that the colors are at the very top :
If you have any problems or questions feel free to leave a response below. Other than that, enjoy !
Click to view demo |
The notes are stored in your browser locally using the Storage API or Cookies. Before you install this widget here are some important things to note about this module :
- The notes are stored locally using the Storage API. If the Storage API is not supported the notes will be saved to a cookie.
- The amount of text that can be stored varies from browser to browser, but as long as your browser is up to date it should be able to save a lot of text.
- Your notes will disappear if you clear your browser cache / cookies or use another browser.
- Notes are stored individually between accounts, so you will have different notes saved if you log into another account.
- Notes are automatically saved as you type.
If you want to install this widget please continue.
Installation
To install this widget go to Admin Panel > Modules > Forum widgets management and create a new widget
Widget name and Title : Notepad
Use a table type : Yes
Widget source :
- Code:
<style type="text/css">
#fa_notepad {
color:#333;
background:#FFF;
border:1px dotted #CCC;
font-size:13px;
font-family:Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
width:150px !important;
height:150px !important;
resize:none;
overflow:hidden;
overflow-y:auto;
outline:none;
display:block;
padding:3px;
margin:0 auto !important;
}
</style>
<textarea id="fa_notepad"></textarea>
<script type="text/javascript">//<![CDATA[
(function() {
var notepad = document.getElementById('fa_notepad');
if (notepad) {
var key = 'fa_notepad_u' + _userdata.user_id,
storage = window.localStorage,
handler = function() {
var key = 'fa_notepad_u' + _userdata.user_id,
val = this.value,
storage = window.localStorage;
storage ? storage[key] = val : my_setcookie(key, val);
};
notepad.value = (storage ? storage[key] : my_getcookie(key)) || _userdata.username + '\'s personal notes...';
notepad.oninput ? notepad.oninput = handler : notepad.onkeyup = handler;
}
}());
// par ange tuteur
//]]></script>
Once you're finished click the save button and then drag and drop the widget into the column you want. After that you should be able to write yourself as many reminders or notes as you like !
Modifications
If you want to make some modifications to the colors of the notepad you can change them by modifying the CSS at the top of the widget :
- Code:
<style type="text/css">
#fa_notepad {
color:#333;
background:#FFF;
border:1px dotted #CCC;
font-size:13px;
font-family:Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
width:150px !important;
height:150px !important;
resize:none;
overflow:hidden;
overflow-y:auto;
outline:none;
display:block;
padding:3px;
margin:0 auto !important;
}
</style>
Note that the colors are at the very top :
- Code:
color:#333; /* FONT COLOR */
background:#FFF; /* BACKGROUND COLOR */
border:1px dotted #CCC; /* BORDER COLOR */
If you have any problems or questions feel free to leave a response below. Other than that, enjoy !
Notice |
Tutorial written by Ange Tuteur. Reproduction not permitted without consent from the author. |
Last edited by Ange Tuteur on Wed 20 Apr 2016, 12:26; edited 3 times in total
- mist3r0us_b0y
- Gender :
Posts : 68
Points : 4201
Reputation : 16
Language : English
Browser : Forum Version :
great share ange !
you always comes up with new idea's
thanks !
you always comes up with new idea's
thanks !
No problem, but you have Andrei34 to thank for the idea, I only animated it.mist3r0us_b0y wrote:great share ange !
you always comes up with new idea's
thanks !
- mist3r0us_b0y
- Gender :
Posts : 68
Points : 4201
Reputation : 16
Language : English
Browser : Forum Version :
ohh ya ... @Andrei34 thanks ....Ange Tuteur wrote:No problem, but you have Andrei34 to thank for the idea, I only animated it.mist3r0us_b0y wrote:great share ange !
you always comes up with new idea's
thanks !
anyway i have issue with database ( can u please redirect me where do i get help cause its locked i cnt reply to it
I discontinued the database project, I'd recommend not using it because it's no longer supported.mist3r0us_b0y wrote:anyway i have issue with database ( can u please redirect me where do i get help cause its locked i cnt reply to it
- mist3r0us_b0y
- Gender :
Posts : 68
Points : 4201
Reputation : 16
Language : English
Browser : Forum Version :
ohh no i was in need of a shoutbox ...
ok thanks for answring
ok thanks for answring
- Wolfuryo
- Gender :
Posts : 256
Points : 3806
Reputation : 81
Language : Romanian and English
Browser : Forum Version :
Thanks Ange. It is working great on my forum.
- GuestGuest
This looks interesting. If it had (a) button(s) like CLEAR (, COPY & PASTE), I'm willing to give it a try.
- Sponsored content
Similar topics
Create an account or log in to leave a reply
You need to be a member in order to leave a reply.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum