CSS + DataGrid

  • Thread starter Thread starter Paperback Writer
  • Start date Start date
P

Paperback Writer

Hi, I need to apply a CSS in my select column of my DataGrid...Is there a
way ?

<asp:ButtonColumn Text="Selecionar" CommandName="Select"></asp:ButtonColumn>

There's no any CssClass property and i need to apply only in this column!

Thanks in advance
 
It said:
Hi, I need to apply a CSS in my select column of my DataGrid...Is there a
way ?

<asp:ButtonColumn Text="Selecionar" CommandName="Select"></asp:ButtonColumn>

There's no any CssClass property and i need to apply only in this column!

Use:
<asp:templatecolumn itemstyle-cssclass="style">
<itemtemplate>
<asp:linkbutton runat="server" commandname="Select" />
</itemtemplate>
</asp:templatecolumn>

Ziemowit
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top