我在page load
禁用我gridview
的特定小區的JavaScript函數如下如何提醒在GridView的細胞
grdInvoice.Rows[grdInvoice.Rows.Count-1]
.Cells[6].Enabled = false;
現在我想申請一個JavaScript警告功能,該單元
我想這
grdInvoice.Rows[grdInvoice.Rows.Count-1]
.Cells[6].Attributes.Add["onclick"]="f1();"
我的功能如下
<script type="text/javascript">
function f1() {
alert('no more rows found to copy');
}
但對我來說沒有工作..
我覺得你的屬性添加方法應該是這樣的 grdInvoice.Rows [grdInvoice.Rows.Count-1] .Cells [6]。 Attributes.Add(「onclick」,「return f1();」); – Mac 2012-04-26 07:01:38
我也試過,但沒有爲我工作 – Dotnet 2012-04-26 07:06:08
所以,如果我的理解是正確的,你想在點擊禁用的gridview單元格後執行javascript函數,請確認! – Mac 2012-04-26 07:09:45