Beispiel #1
0
        private void CreateCancelSearchButton()
        {
            CBContainerRow.Add(
                CBCancelSearchButtonCell = RenderUtils.CreateTableCell().Add(
                    CancelSearchButton   = new ASPxButton()
                    )
                );

            CancelSearchButton.ID = RoundPanel.GetCancelSearchButtonID();
        }
Beispiel #2
0
        private void CreatePerformSearchButton()
        {
            CBContainerRow.Add(
                CBPerformSearchButtonCell = RenderUtils.CreateTableCell().Add(
                    PerformSearchButton   = new ASPxButton()
                    )
                );

            PerformSearchButton.ID = RoundPanel.GetPerformSearchButtonID();
        }
Beispiel #3
0
 private void CreateSeparatorCell()
 {
     CBContainerRow.Add(
         CBSeparatorCell = RenderUtils.CreateTableCell()
         );
 }
Beispiel #4
0
 private void CreatePlaceholderCell()
 {
     CBContainerRow.Add(
         CBPlaceholderCell = RenderUtils.CreateTableCell()
         );
 }