<
telerik:GridButtonColumn ButtonType="PushButton" UniqueName="ButtonColumn" ConfirmDialogType ="RadWindow" CommandName="Undo" ButtonCssClass ="button" ConfirmText ="Do you really want to Undo the batch?" ConfirmTitle="Confirmation" Text ="Undo" >
<HeaderStyle Width="2px"/>
</telerik:GridButtonColumn>
<telerik:GridButtonColumn ButtonType="PushButton" UniqueName="ButtonColumn2" ConfirmDialogType="RadWindow" CommandName="Finalize" ButtonCssClass="button" ConfirmText="Do you really want to Finalize the batch?" ConfirmTitle="Confirmation" Text="Finalize" >
<HeaderStyle Width="3px" />
I am using gridbuttoncolumn for confirmation dilaog box but when box is appeared it is to big.How can I set height of the confirmation box?
Thanks so lot for your help

<master> <radscriptmanager /> <radajaxmanager /> <page> <radajaxmanagerproxy /> <tabs_usercontrol> <radajaxmanagerproxy /> <radtabstrip /> <radmultipage> <page_usercontrol1> <button /> </page_usercontrol1> <page_usercontrol2> <button /> </page_usercontrol2> <page_usercontrol3> <radajaxmanagerproxy> <ajaxsettings /> </radajaxmanagerproxy> <radtextbox /> <button /> </page_usercontrol3> <page_usercontrol4> <button /> </page_usercontrol4> </radmultipage> </tabs_usercontrol> </page> </master>Microsoft JScript runtime error: Sys.InvalidOperationException: Could not find UpdatePanel with ID 'ctl00_ctl00_ContentPlaceHolder1_tabs1_MyContent_txtMyInputPanel'. If it is being updated dynamically then it must be inside another UpdatePanel.| <style type="text/css"> |
| .label |
| { |
| color: Blue; |
| font-family: Tahoma; |
| font-size: 1em; |
| font-weight:bold |
| } |
| .value |
| { |
| color: black; |
| font-family: Tahoma; |
| font-size: .9em; |
| } |
| </style> |
| <asp:UpdatePanel ID="pnl" runat="server" UpdateMode="Conditional"> |
| <ContentTemplate> |
| <table border = "0" align = "center" width = "100%" > |
| <tr> |
| <td><asp:Label ID="lblContent" runat="server" Text="Content File:" class = "label"></asp:Label></td> |
| <td><asp:Label ID="lblContentUrl" runat="server" class = "value"></asp:Label></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="lblTotalLinks" runat="server" Text="Total Links:" class = "label"></asp:Label></td> |
| <td><asp:Label ID="lblTotalLinksValue" runat="server" class = "value"></asp:Label></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="lblVersion" runat="server" Text="Version:" class = "label"></asp:Label></td> |
| <td><asp:Label ID="lblVersionValue" runat="server" class = "value"></asp:Label></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="lblCheckedOut" runat="server" Text="Checked Out:" class = "label" ></asp:Label></td> |
| <td><asp:Label ID="lblCheckedOutValue" runat="server" class = "value"></asp:Label></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="lblCreatedOn" runat="server" Text="Created On:" class = "label" ></asp:Label></td> |
| <td><asp:Label ID="lblCreatedOnValue" runat="server" class = "value"></asp:Label></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="lblLastModifiedOn" runat="server" Text="Last Modified On:" class = "label"></asp:Label></td> |
| <td><asp:Label ID="lblLastModifiedOnValue" runat="server" class = "value"></asp:Label></td> |
| </tr> |
| </table> |
| </ContentTemplate> |
| </asp:UpdatePanel> |
/// <summary>/// Generates the textual control./// </summary>/// <param name="fieldDefinition">Fielddefinition that holds the data that needs to be set on the control.</param>/// <returns>A textual control based on a textbox.</returns>private TextBox textualControl(ServiceObjectFieldDefinition fieldDefinition, RadInputManager inputManager){ string controlId = string.Format("dynamicFieldControl-{0}", fieldDefinition.Id); this.dynamicFieldControlSequenceIds.Add(controlId); RegExpTextBoxSetting textualValidationSetting = new RegExpTextBoxSetting(); textualValidationSetting.BehaviorID = controlId; TextBox textualTextbox = new TextBox(); textualTextbox.ID = controlId; if (fieldDefinition.Mandatory) textualValidationSetting.Validation.IsRequired = true; if (fieldDefinition.MaxLength != null) textualTextbox.MaxLength = Convert.ToInt32(fieldDefinition.MaxLength); if (!string.IsNullOrEmpty(fieldDefinition.DefaultValue)) textualTextbox.Text = fieldDefinition.DefaultValue; if (fieldDefinition.DefaultValueFixed) textualTextbox.Enabled = false; textualValidationSetting.ValidationExpression = fieldDefinition.MinLength != null ? string.Format("{{0},}", Convert.ToInt32(fieldDefinition.MinLength)) : "{0,}"; TargetInput textualValidationInput = new TargetInput(controlId, true); textualValidationSetting.TargetControls.Add(textualValidationInput); inputManager.InputSettings.Add(textualValidationSetting); this.dynamicControls.Add(textualTextbox); return textualTextbox;}RadGrid1.Columns.FindByDataField(
"ProductName").Display = False
The grid is displaying the 12 columns where i can able to insert/delete/update. But when i count the columns it displaying only 2.
Radgrid1.Columns.Count.
Please tell me how to access the RadGrid fields.
I have to lot things to do with. Also tell me how to "sum" all columns values with this kind of situation.
Thanks.
Regards
Syed Arshad