/// <summary>
        /// This method load data to control
        /// </summary>
        /// <returns></returns>
        public async System.Threading.Tasks.Task LoadData()
        {
            // Obtain page width
            w = Window.Current.Bounds.Width;

            progressRing.IsActive = true;

            // Load notes
            lvList.ItemsSource = await CRMHelper.RetrieveNotes(Id, (int)EntityMetadataEx.EntityMetadata.ObjectTypeCode);

            progressRing.IsActive = false;
        }