コード例 #1
0
 /// <summary>
 /// Refreshes the children of the data view that has caused execution of business rules.
 /// </summary>
 public void RefreshChildren()
 {
     ExecuteOnClient("this._forceChanged=true;this._raiseSelectedDelayed=true;");
     if (!(ClientScript.Contains("this.refresh(")))
     {
         ExecuteOnClient("this.refresh(true);");
     }
 }
コード例 #2
0
        /// <summary>
        /// Ensures that the action state machine will execute an iteration when the server response is returned to the client library.
        /// </summary>
        public void Continue()
        {
            string script = "this._continueAfterScript=true;";

            if (!(String.IsNullOrEmpty(ClientScript)) && !(ClientScript.Contains(script)))
            {
                ExecuteOnClient(script);
            }
        }