Hello, I'm using RadControls for Winforms Q3 2009 to build an Winforms application. I have a RadgridView in there. I want to change the text "Drag a column here to group by this column".
I tried to do this, through the option edit UI elements, it changes the text for a moment, but when I execute the application the text doesn't change
thanks for the help
protected void InitializeDataEntry()
{
htmlView = new HtmlViewDefinition();
htmlView.RowTemplate.ReadXml("/vcenter/address.html");
gridAddressEditList.ViewDefinition = htmlView;
}
I receive the following error:
Object reference not set to an instance of an object.
This is my address.html file. This seems to load fine:
<table>
<tr>
<td rowspan="2">Type</td>
<td>Address1</td>
<td>City</td>
<td rowspan="2">Postal Code</td>
</tr>
<tr>
<td>Address 2</td>
<td>State</td>
</tr>
</table>
I am new to using the viewDefinitions and thought I had followed the example code pretty closely. Could anyone point me in the right direction here?
Thanks,
Chris Eisnaugle