Hi,
I have three buttoncolumns in my ultrawebgrid.
I want to give text on these cell buttons.
Can it possible?
Thanks in advance.
Hello
You can use the property Type="Button". Also you can use TemplatedColumn and inside insert button with some text. Please take a look at the code below:
<igtbl:UltraGridColumn BaseColumnName="OrderID" Type="Button" Key="OrderID"> <Header Caption="OrderID"> </Header> </igtbl:UltraGridColumn>
with TemplatedColumn
<igtbl:TemplatedColumn> <CellTemplate> <asp:Button ID="Button1" runat="server" Text="Test" /> </CellTemplate> </igtbl:TemplatedColumn>
I hope this helps.