Esempio n. 1
0
        private void ReOrder(string objectId, bool down, bool toEdge)
        {
            try
            {
                Util.EnsureOperationSafe();
                DbUtil.ReOrder(objectId, this.ParentOrganization.ID, down, toEdge);
            }
            catch (Exception ex)
            {
                this.notice.AddErrorInfo(ex);
                WebUtility.ShowClientError(ex);
            }

            this.InnerRefreshOwnerTree();
        }