Friday, August 26, 2016

Angular JS Databinding

<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>


<div ng-app="test" ng-controller="myC">
    Name: <input ng-model="firstname">
    <h1>{{firstname}}</h1>
 <h1>{{lastname}}</h1>
</div>

<script>
var app = angular.module('test', []);
app.controller('myC', function($scope) {
    $scope.firstname = "Peak";
    $scope.lastname = "Finders";
});
</script>

How to reduce the width of choice column in List in SP 2013

Add it to a script editor web part to the page
<style type='text/css'>
.ms-vh-div[DisplayName='ChoiceColumnDisplayName']
{
  width:250px;
}
</style>

How to rename a SharePoint List Title?



Click on List/Library Setting
Click on List name, description and navigation
Enter your new Title in Name input field.
Click on Save button


WE have to change web URL List Name.

Open in SharePoint Desingner
click Left Navigation in Designer
Click the All Files Folder
Select the List folder
Change the name user depend

Friday, August 12, 2016

Application Components in Andriod




  • -buliding blocks of andriod application
  • -Apllication manifest  file  AndriodManifest.xml


  1. Activites -UI and handle the user interaction to the smartphone
  2. services-background processing associated with an application
  3. broadcast recievers-communicate andrios os and application
  4. content providers-handle data and database management issues


Installation of Andriod


Operating System needed:


  1. -MS XP
  2. mac OS10.5.8
  3. Linux GNU C library 2.7


Required tools

  1. Java JDK5 
  2. Andriod SDK
  3. java runtime Enivronment 6
  4. Andriod Studio
  5. Eclipse IDE(Optional)
  6. Andriod Development Tools