ASP.NET dataTables and postback
ASP.NET dataTables and postback
f.dalpozzo
Posts: 8Questions: 0Answers: 0
Hi all, I use a GridView view with server - side row commands using postback. When I click the row button, the postback goes and the grid seem to loose dataTables reference and styles.
Someone can help me?
[sorry for my bad english]
Fab
Someone can help me?
[sorry for my bad english]
Fab
This discussion has been closed.
Replies
[code]
protected void grdCategorieProdotto_DataBound(object sender, EventArgs e) {
if (grdCategorieProdotto.Rows.Count > 0) {
grdCategorieProdotto.HeaderRow.TableSection = TableRowSection.TableHeader;
grdCategorieProdotto.FooterRow.TableSection = TableRowSection.TableFooter;
}
[/code]