Exemplo n.º 1
0
 /// <summary>
 /// Select the table row at position <code>rowIdx</code>.
 /// </summary>
 /// <param name="rowIdx"> the index of the row to select </param>
 public virtual void SelectRow(long?rowIdx)
 {
     JsRunner.RunScript("selectTableRow", ContentElement, rowIdx);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Select the table row at position <code>rowIdx</code>.
 /// </summary>
 /// <param name="rowIdx">the index of the row to select</param>
 /// <param name="opened">The opened.</param>
 public virtual void SetNodeOpened(long?rowIdx, bool?opened)
 {
     long?result = (long?)JsRunner.RunScript("setTreeNodeOpened", ContentElement, rowIdx, opened);
 }
Exemplo n.º 3
0
 static UnitTest1()
 {
     JsRunner.StartVirtualWebServer(AppDomain.CurrentDomain.BaseDirectory + "\\..\\..\\..\\");
 }