Posts

Showing posts from January 9, 2019

Synapses (syndicat)

Image
.mw-parser-output .entete.association{background-image:url("//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Collaboration_logo_infobox.svg/50px-Collaboration_logo_infobox.svg.png")} Syndicat national des activités liées aux animaux domestiques et non domestiques, aux végétaux d'ornement, à l'environnement et au cadre de vie Cadre Forme juridique Syndicat professionnel But Représentation et défense des intérêts collectifs de ses adhérents Zone d’influence   France  Europe Fondation Fondation 2011 Fondateurs Anciens membres du Prodaf Négociateurs de la CCN Origine Dissidents du Prodaf à la suite de la volonté de la grande distribution de s'approprier la direction du syndicat Identité Siège Lascombes Tourniac 15700 Pleaux Structure Assemblée générale Conseil syndical Directoire Commissions internes Président Luc LADONNE Méthode Veille, Négociation, Lobbying Gestion de crise,

TableSorter: How to Hide/Display Results in TableSorter

Image
1 I want to Hide Results in a table if the user dont search anything yet, and Show Filtering Results when the user write in filtering column How can i do this? This its my code $("#tableAccionesHabilitadas").tablesorter({ theme: "bootstrap", widthFixed: true, widgets: ["filter", "columns", "zebra", "editable"], widgetOptions: { zebra: ["even", "odd"], columns: ["primary", "secondary", "tertiary"], filter_reset: ".reset", filter_cssFilter: [ 'form-control', 'form-control filter-selecction1',

Processing Sketch in Android

Image
0 I am trying to run a Processing sketch on Android Studio. After exporting the project and importing the libraries into Android, I have created my sketch in a class "Sketch". In the MainActivity, I am loading this Sketch into a FrameLayout. See code below. I follow the procedure explained on the website: http://android.processing.org/tutorials/android_studio/index.html My code to load the code "Sketch.class" is the following: public class MainActivity extends AppCompatActivity { private PApplet sketch; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); FrameLayout frame = new FrameLayout(this); frame.setId(CompatUtils.getUniqueViewId()); setContentView(frame, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,