Exemplo n.º 1
0
        private void CreateCancelSearchButton()
        {
            CBContainerRow.Add(
                CBCancelSearchButtonCell = RenderUtils.CreateTableCell().Add(
                    CancelSearchButton   = new ASPxButton()
                    )
                );

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

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