or
<EditFormSettings> <EditColumn ButtonType="PushButton"> </EditColumn></EditFormSettings>Can you please provide me with a Grid Demo with features :
As I have seen that when there is a single word entered the columns expand as per as the Content, but when there are multiple words
With spaces in between them I have encountered one problem that some columns expand according to the content and
Some columns do not expand and get shrink.

| <Columns> |
| <telerik:GridBoundColumn DataField="NoteID" DataType="System.Int32" HeaderText="NoteID" SortExpression="NoteID" UniqueName="NoteID" Visible="false" ReadOnly="true" /> |
| <telerik:GridDateTimeColumn DataField="NoteDate" DataType="System.DateTime" UniqueName="NoteDate" HeaderText="Date" HeaderStyle-Width="1" AllowSorting="true" DataFormatString="{0:M/d/yyyy}" /> |
| <telerik:GridBoundColumn DataField="Note" HeaderText="Note" SortExpression="Note" UniqueName="Note" /> |
| <telerik:GridBoundColumn DataField="UserID" DataType="System.Int32" HeaderText="UserID" SortExpression="UserID" UniqueName="UserID1" Visible="false" ReadOnly="true" /> |
| <telerik:GridBoundColumn DataField="StudentID" DataType="System.Int32" HeaderText="StudentID" SortExpression="StudentID" UniqueName="StudentID1" Visible="false" ReadOnly="true" /> |
| </Columns> |
| <asp:ObjectDataSource ID="dsNotes" runat="server" DataObjectTypeName="StudentNote" TypeName="StudentNoteManager" DeleteMethod="Delete" InsertMethod="Save" SelectMethod="GetNotes" UpdateMethod="Save"> |
| <InsertParameters> |
| <asp:QueryStringParameter Name="StudentID" QueryStringField="sid" Type="Int32" /> |
| <asp:SessionParameter SessionField="UserID" Name="UserID" Type="Int32" /> |
| </InsertParameters> |
| </asp:ObjectDataSource> |