jQuery tree view without plugin » Techlister

jQuery tree view without plugin » Techlister: "$( document ).ready( function( ) {
    $( '.tree li' ).each( function() {
        if( $( this ).children( 'ul' ).length > 0 ) {
            $( this ).addClass( 'parent' );    
        }
    });
 
    $( '.tree li.parent > a' ).click( function( ) {
        $( this ).parent().toggleClass( 'active' );
        $( this ).parent().children( 'ul' ).slideToggle( 'fast' );
    });
 
    $( '#all' ).click( function() {
 
        $( '.tree li' ).each( function() {
            $( this ).toggleClass( 'active' );
            $( this ).children( 'ul' ).slideToggle( 'fast' );
        });
    });
 
});"

'via Blog this'

Sunday, 20 November 2016

Monitor Device Battery Status Using Ionic Framework

Monitor Device Battery Status Using Ionic Framework: "$ionicPlatform.ready(function() {
        $rootScope.$on("$cordovaBatteryStatus:status", function(event, args) {
            if(args.isPlugged) {
                alert("Charging -> " + args.level + "%");
            } else {
                alert("Battery -> " + args.level + "%");
            }
        });
    });"

'via Blog this'

Thursday, 27 October 2016

Sunday, 18 September 2016

Konsult art Bhandup

About: "konsultart@gmail.com "



'via Blog this'

Saturday, 30 July 2016

Automate script to open, run and export a file into exe

Automate script to open, run and export a file into exe: "Set MyApp = CreateObject("QlikTech.QlikView")
Set MyDoc = MyApp.OpenDoc ("C:\edpdsi-cs\DailyReportPlain-Qlikview-21072014_1.qvw")
Set oShell = CreateObject("WScript.Shell")
Set ActiveDocument = MyDoc
ActiveDocument.ReloadEx 0,1
Set Button1 = ActiveDocument.GetSheetObject("BU03")
Button1.Press
MyDoc.GetApplication.Quit
Set MyDoc = Nothing
Set MyApp = Nothing "



'via Blog this'