2012年1月3日 星期二

固定ListView頂端列

1.移除 aspx 一列
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

2.用 div 包住 listview
<div style="overflow: auto; height:400px">

3.LayoutTemplate 第一個 tr 設定 style
<tr style="position:relative;top: expression(offsetParent.scrollTop); " >

vue3-simple-alert 學習心得

官網 顯示提示輸入訊息並於按下確定時檢查是否有輸入,防止未輸入就按確定,且和按取消用不同邏輯處理 VueSimpleAlert.fire({     title: '請輸入原因',     input: 'text',     showCancel...