Beispiel #1
0
        private async Task updateFilterList()
        {
            List <string> filteredList = await FSNotesHandler.getFormationFilterListAsync();

            //filteredList.Add("Skills");
            this.filterList.Clear();
            this.filterList.AddRange(filteredList);
        }
Beispiel #2
0
        private async void requestNewComment()
        {
            List <string> formations = await FSNotesHandler.getFormationFilterListAsync();

            formations.Sort(new FormationSorter());
            AddCommentDialogFragment commentDialog = AddCommentDialogFragment.NewInstance(formations);

            startDialogFragment(commentDialog);
        }
Beispiel #3
0
        private async void openNewJumpDialog()
        {
            List <string> formations = await FSNotesHandler.getFormationFilterListAsync();

            formations.Remove("Skills");
            formations.Sort(new FormationSorter());
            NewJumpDialogFragment newJumpDialog = NewJumpDialogFragment.NewInstance(formations);

            startDialogFragment(newJumpDialog);
        }