[ad_1]
やあ、
グリッドビューの上部に新しい空の行を追加する方法を教えてください。また、編集可能で、グリッドビューの上部にデータを追加する必要があります。
よろしくお願いいたします。
アモル
解決策 1
この記事を見てください:
編集可能なネストされた DataGrid[^]
AmolNagrkar は次のように書いています。グリッドビューの上部にデータを追加します
上記のコードベースでの選択に従って、これを調整します。
解決策 2
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { //This is a Test Condition if (e.Row.RowIndex % 2==0) { GridViewRow g = new GridViewRow(-1,-1, DataControlRowType.DataRow, DataControlRowState.Normal); for (int i = 0; i < e.Row.Cells.Count; i++) { //creating table Cells TableCell tCell = new TableCell(); tCell.Text = " "; //Add Cells g.Cells.Add(tCell); //Set Color for Empty Cell g.BackColor = System.Drawing.Color.Red; } Table tbl = e.Row.Parent as Table; //add rows tbl.Rows.Add(g); } }
解決策 5
https://www.moksatechnologies.com/2017/11/06/check-our-pricing/
解決策 3
やあ、
良い今日、
この上記のソウルションは私にとってはうまく機能していますが、実際の行の下の girdview に顧客が追加されます。
グリッドの一番上にカスタム行を作成するには、あなたの助けが必要です。
前もって感謝します
ありがとう、
ムニ
[ad_2]
コメント