or
radconfirm("Are you sure you want to postback?", aspButtonCallbackFn, 330, 180, null, "Confir"); in the javascript script. When I just click RadButton that fire up OnClientClicking Event. The focus should be on the window when it opens. Focus should stay within the modal window when I continue tabbing. I am able to tab to other screen elements. The focus should stay within the modal window: OK, Cancel and Close (X) buttons.private void InitializeGrid(){ try { // add columns Telerik.Web.UI.GridBoundColumn boundColumn = new Telerik.Web.UI.GridBoundColumn(); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "OrderId"; boundColumn.UniqueName = "OrderId"; boundColumn.HeaderText = "Order Id"; boundColumn.DataType = typeof(System.Guid); boundColumn.Display = false; boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "Locked"; boundColumn.UniqueName = "Locked"; boundColumn.HeaderText = "Locked"; boundColumn.DataType = typeof(System.Boolean); boundColumn.Display = false; Telerik.Web.UI.GridImageColumn imageColumn = new Telerik.Web.UI.GridImageColumn(); uxOrderListControl.MasterTableView.Columns.Add(imageColumn); imageColumn.UniqueName = "LockImage"; imageColumn.HeaderText = "L"; imageColumn = new Telerik.Web.UI.GridImageColumn(); uxOrderListControl.MasterTableView.Columns.Add(imageColumn); imageColumn.UniqueName = "A"; imageColumn.HeaderText = "A"; imageColumn = new Telerik.Web.UI.GridImageColumn(); uxOrderListControl.MasterTableView.Columns.Add(imageColumn); imageColumn.UniqueName = "E"; imageColumn.HeaderText = "E"; boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "OrderType"; boundColumn.UniqueName = "OrderType"; boundColumn.HeaderText = "Type"; boundColumn.DataType = typeof(System.String); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "CurrentOrderId"; boundColumn.UniqueName = "CurrentOrderId"; boundColumn.HeaderText = "Number"; boundColumn.DataType = typeof(System.String); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "OrderDate"; boundColumn.DataFormatString = "{0:d}"; boundColumn.UniqueName = "OrderDate"; boundColumn.HeaderText = "Date"; boundColumn.DataType = typeof(System.DateTime); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "Total"; boundColumn.DataFormatString = "{0:c}"; boundColumn.UniqueName = "Total"; boundColumn.HeaderText = "Total"; boundColumn.DataType = typeof(System.Decimal); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "BillToName"; boundColumn.UniqueName = "BillToName"; boundColumn.HeaderText = "Bill To Name"; boundColumn.DataType = typeof(System.String); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "SoldToName"; boundColumn.UniqueName = "SoldToName"; boundColumn.HeaderText = "Sold To Name"; boundColumn.DataType = typeof(System.String); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "Lookup"; boundColumn.UniqueName = "Lookup"; boundColumn.HeaderText = "Lookup"; boundColumn.DataType = typeof(System.String); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "NeedToEdi"; boundColumn.UniqueName = "NeedToEdi"; boundColumn.HeaderText = "Need To EDI"; boundColumn.DataType = typeof(System.Boolean); boundColumn = new Telerik.Web.UI.GridBoundColumn(); uxOrderListControl.MasterTableView.Columns.Add(boundColumn); boundColumn.DataField = "ReferralInvoiceId"; boundColumn.UniqueName = "ReferralInvoiceId"; boundColumn.HeaderText = "Ref ID"; boundColumn.DataType = typeof(System.Guid); uxOrderListControl.MasterTableView.DataKeyNames = new string[] { "OrderId", "ReferralInvoiceId" }; if (_hierarchical) { uxOrderListControl.ClientSettings.AllowExpandCollapse = true; uxOrderListControl.MasterTableView.HierarchyLoadMode = GridChildLoadMode.Client; uxOrderListControl.MasterTableView.HierarchyDefaultExpanded = true; uxOrderListControl.MasterTableView.SelfHierarchySettings.ParentKeyName = "ReferralInvoiceId"; uxOrderListControl.MasterTableView.SelfHierarchySettings.KeyName = "OrderId"; uxOrderListControl.MasterTableView.SelfHierarchySettings.MaximumDepth = 2; } } catch { throw; }}#endregion