我有一個jqgrid和按鈕圖像列,看起來像這樣:使用會話禁用按鈕
button | sample1 |紅色
按鈕| sample2 |藍色
button | sample3 |紅色
按鈕| sample4 |紅色
按鈕| sample5 |藍色
button | sample6 |綠色
什麼需要做的是這樣的:
如果用戶有紅會話的會話ID [「顏色」] =紅色;
然後所有不是紅色的按鈕將被禁用。 與其他顏色相同。
但如果會話顏色不存在。它只是隱藏的列
這裏是我的示例代碼:
var sessionColor = '<%=Session["Color"]%>';
if (sessionColor == 'red') {
// code here
// hide button green and blue
}
if (sessionColor == 'green') {
// code here
// hide button red and blue
}
if (sessionColor == 'blue') {
// code here
// hide button gren and blue
}
else { //hide all button}
問題:我將如何禁用按鈕,如果用「紅」會話的用戶將登錄
那麼有什麼問題? – Ulises
我不知道我將如何禁用/隱藏按鈕。如果它包含「紅色」 – StackOverflowUser
使用按鈕Collection方法,並且button.Visible = true;和button.Visible = false;代碼/ – Sagotharan