I have a RadGrid and am using a customer usercontrol for the insert/edit forms. I have an edit column in the grid, and have sized it down to a very small column, 15px.
When the grid is initally displayed the edit column looks fine. When you clicke the edit button, the columns resize and the edit column is now much larger. The resizing only seems to occur when the EditMode is "EditForms", if the EditMode is "PopUp" the resizing doesn't occur.
Has anyone seen this, and possibly have a workaround?
Thanks,
Steve
| <telerik:RadGrid ID="_cloudGrid" runat="server" DataSourceID="_dsClouds" |
| AllowAutomaticUpdates="True" |
| AllowAutomaticDeletes="True" |
| AllowAutomaticInserts="True" |
| AutoGenerateColumns="False" > |
| <MasterTableView Width="100%" CommandItemDisplay="Top" DataKeyNames="Id" InsertItemDisplay="Top" EditMode="EditForms"> |
| <CommandItemSettings AddNewRecordText="Create Cloud Account" /> |
| <Columns> |
| <telerik:GridEditCommandColumn HeaderText="Edit" Resizable="false" ButtonType="ImageButton"> |
| <HeaderStyle Width="15" /> |
| </telerik:GridEditCommandColumn> |
| <telerik:GridBoundColumn DataField="Id" HeaderText="Id" ReadOnly="true" Visible="false" /> |
| <telerik:GridBoundColumn DataField="Alias" HeaderText="Name" ReadOnly="false" Visible="true" /> |
| <telerik:GridDropDownColumn DataField="Provider" HeaderText="Provider" ReadOnly="false" Visible="true" ListTextField="Name" ListValueField="Value" DataSourceID="_dsProviders" /> |
| <telerik:GridBoundColumn DataField="Login" HeaderText="Access Key" ReadOnly="false" Visible="true" /> |
| </Columns> |
| <EditFormSettings UserControlName="CloudEditForm.ascx" EditFormType="WebUserControl"> |
| <PopUpSettings Modal="true" /> |
| </EditFormSettings> |
| </MasterTableView> |
| <ClientSettings> |
| <Resizing AllowColumnResize="false" AllowRowResize="false" EnableRealTimeResize="false" ClipCellContentOnResize="true" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
When the grid is initally displayed the edit column looks fine. When you clicke the edit button, the columns resize and the edit column is now much larger. The resizing only seems to occur when the EditMode is "EditForms", if the EditMode is "PopUp" the resizing doesn't occur.
Has anyone seen this, and possibly have a workaround?
Thanks,
Steve