Hello,
I am using an GridHTMLEditorColumn and in edit mode, when I edit for first time, the size for content is quite zero, and size for upper control bar and lower status bar are over sized ???
Here is my code
Am i the only ?
Thanks for help.
CS
I am using an GridHTMLEditorColumn and in edit mode, when I edit for first time, the size for content is quite zero, and size for upper control bar and lower status bar are over sized ???
Here is my code
| <telerik:RadGrid ID="LocalizeGrid" runat="server" AllowPaging="True" |
| AllowSorting="True" ShowStatusBar="true" PageSize="20" GridLines="None" AutoGenerateColumns='false'> |
| <PagerStyle Mode="NextPrevAndNumeric" /> |
| <ClientSettings > |
| <Resizing AllowColumnResize="True" ResizeGridOnColumnResize="true" ClipCellContentOnResize="true"/> |
| <Scrolling AllowScroll="True" ScrollHeight='500px' UseStaticHeaders="True" SaveScrollPosition="True" /> |
| <Selecting AllowRowSelect="True" /> |
| </ClientSettings> |
| <MasterTableView DataKeyNames="TypeName,CrmId,FieldId" TableLayout="Fixed" > |
| <Columns> |
| <telerik:GridClientSelectColumn HeaderStyle-Width="40px" /> |
| <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" ButtonType="ImageButton" HeaderStyle-Width="40px" /> |
| <telerik:GridButtonColumn UniqueName="DeleteColumn" CommandName='Delete' ButtonType="ImageButton" HeaderStyle-Width="40px" |
| ConfirmDialogType="RadWindow" /> |
| <Telerik:GridBoundColumn DataField="CrmId" DataType='System.Guid' HeaderText="CRMID" UniqueName="CrmId" HeaderStyle-Width="200px" ReadOnly="true" /> |
| <Telerik:GridBoundColumn DataField="FieldId" DataType='System.Int32' HeaderText="FIELDID" HeaderStyle-Width="80px" UniqueName="FieldId" ReadOnly="true" /> |
| <Telerik:GridBoundColumn DataField="ShortValue" HeaderText="SHORTVAL" HeaderStyle-Width="300px" UniqueName="ShortValue" /> |
| <telerik:GridHTMLEditorColumn UniqueName="LongValue" SortExpression="LongValue" HeaderText="LONGVAL" |
| DataField="LongValue" HeaderStyle-Width="500px"> |
| </telerik:GridHTMLEditorColumn> |
| </Columns> |
| <EditFormSettings> |
| <EditColumn ButtonType="ImageButton" /> |
| </EditFormSettings> |
| </MasterTableView> |
| </telerik:RadGrid> |
Am i the only ?
Thanks for help.
CS