\documentclass[10pt,a4paper]{article} % Packages \usepackage{fancyhdr} % For header and footer \usepackage{multicol} % Allows multicols in tables \usepackage{tabularx} % Intelligent column widths \usepackage{tabulary} % Used in header and footer \usepackage{hhline} % Border under tables \usepackage{graphicx} % For images \usepackage{xcolor} % For hex colours %\usepackage[utf8x]{inputenc} % For unicode character support \usepackage[T1]{fontenc} % Without this we get weird character replacements \usepackage{colortbl} % For coloured tables \usepackage{setspace} % For line height \usepackage{lastpage} % Needed for total page number \usepackage{seqsplit} % Splits long words. %\usepackage{opensans} % Can't make this work so far. Shame. Would be lovely. \usepackage[normalem]{ulem} % For underlining links % Most of the following are not required for the majority % of cheat sheets but are needed for some symbol support. \usepackage{amsmath} % Symbols \usepackage{MnSymbol} % Symbols \usepackage{wasysym} % Symbols %\usepackage[english,german,french,spanish,italian]{babel} % Languages % Document Info \author{root1} \pdfinfo{ /Title (js-avance.pdf) /Creator (Cheatography) /Author (root1) /Subject (JS Avancé Cheat Sheet) } % Lengths and widths \addtolength{\textwidth}{6cm} \addtolength{\textheight}{-1cm} \addtolength{\hoffset}{-3cm} \addtolength{\voffset}{-2cm} \setlength{\tabcolsep}{0.2cm} % Space between columns \setlength{\headsep}{-12pt} % Reduce space between header and content \setlength{\headheight}{85pt} % If less, LaTeX automatically increases it \renewcommand{\footrulewidth}{0pt} % Remove footer line \renewcommand{\headrulewidth}{0pt} % Remove header line \renewcommand{\seqinsert}{\ifmmode\allowbreak\else\-\fi} % Hyphens in seqsplit % This two commands together give roughly % the right line height in the tables \renewcommand{\arraystretch}{1.3} \onehalfspacing % Commands \newcommand{\SetRowColor}[1]{\noalign{\gdef\RowColorName{#1}}\rowcolor{\RowColorName}} % Shortcut for row colour \newcommand{\mymulticolumn}[3]{\multicolumn{#1}{>{\columncolor{\RowColorName}}#2}{#3}} % For coloured multi-cols \newcolumntype{x}[1]{>{\raggedright}p{#1}} % New column types for ragged-right paragraph columns \newcommand{\tn}{\tabularnewline} % Required as custom column type in use % Font and Colours \definecolor{HeadBackground}{HTML}{333333} \definecolor{FootBackground}{HTML}{666666} \definecolor{TextColor}{HTML}{333333} \definecolor{DarkBackground}{HTML}{2962FF} \definecolor{LightBackground}{HTML}{F1F5FF} \renewcommand{\familydefault}{\sfdefault} \color{TextColor} % Header and Footer \pagestyle{fancy} \fancyhead{} % Set header to blank \fancyfoot{} % Set footer to blank \fancyhead[L]{ \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{C} \SetRowColor{DarkBackground} \vspace{-7pt} {\parbox{\dimexpr\textwidth-2\fboxsep\relax}{\noindent \hspace*{-6pt}\includegraphics[width=5.8cm]{/web/www.cheatography.com/public/images/cheatography_logo.pdf}} } \end{tabulary} \columnbreak \begin{tabulary}{11cm}{L} \vspace{-2pt}\large{\bf{\textcolor{DarkBackground}{\textrm{JS Avancé Cheat Sheet}}}} \\ \normalsize{by \textcolor{DarkBackground}{root1} via \textcolor{DarkBackground}{\uline{cheatography.com/84126/cs/19881/}}} \end{tabulary} \end{multicols}} \fancyfoot[L]{ \footnotesize \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{LL} \SetRowColor{FootBackground} \mymulticolumn{2}{p{5.377cm}}{\bf\textcolor{white}{Cheatographer}} \\ \vspace{-2pt}root1 \\ \uline{cheatography.com/root1} \\ \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Cheat Sheet}} \\ \vspace{-2pt}Not Yet Published.\\ Updated 21st June, 2019.\\ Page {\thepage} of \pageref{LastPage}. \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Sponsor}} \\ \SetRowColor{white} \vspace{-5pt} %\includegraphics[width=48px,height=48px]{dave.jpeg} Measure your website readability!\\ www.readability-score.com \end{tabulary} \end{multicols}} \begin{document} \raggedright \raggedcolumns % Set font size to small. Switch to any value % from this page to resize cheat sheet text: % www.emerson.emory.edu/services/latex/latex_169.html \footnotesize % Small font. \begin{multicols*}{2} \begin{tabularx}{8.4cm}{X} \SetRowColor{DarkBackground} \mymulticolumn{1}{x{8.4cm}}{\bf\textcolor{white}{Framework JS Smart Form}} \tn \SetRowColor{LightBackground} \mymulticolumn{1}{x{8.4cm}}{{\bf{Afficher / masquer un champ}} \newline champObligatoire(); \newline \newline {\emph{affichageChamp(formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1, true);}} \newline \newline {\emph{affichageChamp(formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1, false);}} \newline \newline {\bf{Activer / Désactiver les champs obligatoires}} \newline champObligatoire(); \newline \newline {\emph{champObligatoire(formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1, false);}} \newline \newline {\emph{champObligatoire(formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1, true);}} \newline \newline {\bf{vider les champs textes et date/ Remettre la valeur par défaut d'un champ /décocher les cases à cocher / déselectionner une liste}} \newline viderChamp(); \newline \newline {\emph{viderChamp(formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1);}} \newline \newline {\bf{Masquer une section dont tous les champs sont masqués}} \newline masquerSection(); \newline \newline {\emph{masquerSection(section1, false);}} \newline {\emph{masquerSection(section1, true);}} \newline \newline {\bf{attendre que le formulaire soit chargé côté back office}} \newline bkoInit(); \newline \newline {\bf{attendre que le formulaire soit chargé côté front office}} \newline froInit(); \newline \newline {\bf{Transformer un select en bouton radio}} \newline boutonRadio();} \tn \hhline{>{\arrayrulecolor{DarkBackground}}-} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{8.4cm}{X} \SetRowColor{DarkBackground} \mymulticolumn{1}{x{8.4cm}}{\bf\textcolor{white}{Algorithme}} \tn \SetRowColor{LightBackground} \mymulticolumn{1}{x{8.4cm}}{{\bf{Affichage d'un champ ou d'une section avec une seule condition}} \newline \newline Var Tableau = {[} \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé' \newline {]} \newline \newline {\emph{VALEUR1 s'affichera si le champ variable VALEUR2 a pour valeur 'congé'. Dans tous les autres cas, il sera masque, vidé et rendu non obligatoire.}} \newline \newline Var Tableau = {[} \newline 'section1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé' \newline {]} \newline \newline {\emph{la section 1 s'affichera si le champ variable VALEUR2 a pour valeur 'congé'. Dans tous les autres cas, elle sera masquée.}} \newline \newline {\bf{Affichage d'un champ avec une seule condition mais plusieurs valeurs}} \newline \newline Var Tableau = {[} \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé;embauche;fin de contrat' \newline {]} \newline \newline {\emph{VALEUR1 s'affichera si le champ variable VALEUR2 a pour valeur 'congé' ou 'embauche' ou 'fin de contrat'.}} \newline \newline {\bf{Affichage de deux champs, chacun à une seule condition}} \newline \newline Var Tableau = {[} \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé', \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR3\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé \newline {]} \newline \newline {\emph{VALEUR1 et VALEUR3 s'afficheront si le champ variable VALEUR2 a pour valeur 'congé'.}} \newline \newline {\bf{Affichage d'un champ avec plusieurs conditions}} \newline \newline Var Tableau = {[} \newline \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR3|RTT\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR4|une semaine' \newline {]} \newline \newline {\emph{VALEUR1 s'affichera si le champ variable VALEUR2 a pour valeur 'congé', si le champ variable VALEUR3 a pour valeur 'RTT' et si le champ variable VALEUR4 a pour valeur 'une semaine'. Les 3 conditions doivent être remplies, si l'une d'entre elles ne l'ai pas, le champ VALEUR1 sera masque.}} \newline \newline {\bf{Affichage d'un champ si l'une ou l'autre condition est remplie}} \newline {\emph{Pour tester si l'une ou l'autre valeur est remplie, il faut rajouter un séparateur | au sein d'une même condition.}} \newline \newline Var Tableau = {[} \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé|formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR3|RTT' \newline {]} \newline \newline {\emph{ VALEUR1 s'affichera si le champ variable VALEUR2 a pour valeur 'congé', OU si le champ variable VALEUR3 a pour valeur 'RTT'.}} \newline \newline {\bf{Affichage d'un champ si le champ testé n'est pas renseigné}} \newline \newline Var Tableau = {[} \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|null' \newline {]} \newline {\emph{VALEUR1 s'affichera si VALEUR2 n'a pas été renseigné}} \newline \newline {\bf{Conditions complexes}} \newline \newline Var Tableau = {[} \newline 'formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR1\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR2|congé\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR3|RTT;congés payees;congés sans solde\# \seqsplit{formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR4|anticipation|formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR5|récupération\#formulaire.INTERVENTIONS\_EN\_COURS\$VALEUR6|obligatoire;different;null'} \newline \newline \newline {\emph{VALEUR1 s'affichera :}} \newline {\emph{si VALEUR2 a pour valeur 'congé'}} \newline {\emph{ET VALEUR3 a pour valeur 'RTT' OU 'congés payés' OU 'congés sans solde'}} \newline {\emph{ET si VALEUR4 a la valeur 'anticipation' OU si VALEUR5 a la valeur 'récupération'}} \newline {\emph{Enfin, s'il est affiché ce champ sera obligatoire si VALEUR6 est renseigné.}}} \tn \hhline{>{\arrayrulecolor{DarkBackground}}-} \end{tabularx} \par\addvspace{1.3em} % That's all folks \end{multicols*} \end{document}