zoukankan      html  css  js  c++  java
  • 在GridView验证时,提示行号

    <pbcrm:PBCRMGridView ID="gvCustomer" runat="server" 
                        AllowPaging
    ="false" AllowSorting="false"
                        EnableViewState
    ="false" DataSourceID="sqldsClientList"  
                        DataKeyNames
    ="HolderKey"                     
                        AutoGenerateColumns
    ="False" Width="99%">
                        
    <Columns>                      
                           
    <asp:BoundField DataField="CustomerName" HeaderText="Client Name" ReadOnly="True" SortExpression="CustomerName" />
                          
    <asp:BoundField DataField="Nationality" HeaderText="Nationality" ReadOnly="True" SortExpression="Nationality" />
                          
    <asp:BoundField DataField="YearofBirth" HeaderText="Year of Birth" ReadOnly="True" SortExpression="YearofBirth" />
                          
    <asp:BoundField DataField="Age" HeaderText="Age" ReadOnly="True"  SortExpression="Age" />
                          
    <asp:BoundField DataField="IsPI" HeaderText="PI Status" SortExpression="IsPI" />            
                          
    <asp:TemplateField>
                                
    <headertemplate>
                                    Education Level
                                
    </headertemplate>
                                
    <itemtemplate>                                
                                    
    <pbcrm:EducationLevelDDL  ID="ddlEduLevel" runat="server" 
                                        SelectedValue
    ='<%#Eval("EduLevel") %>'/>
                                    
    <pbcrm:PBCRMRequiredFieldValidator ID="rfvEduLevel"  
                                            ControlToValidate
    ="ddlEduLevel"                                         
                                            ErrorMessage
    = '<%#"Education Level for client " + (Container.DataItemIndex + 1).ToString() + " is required"%>'
                                            runat="server"  Display="None"/>
                                
    </itemtemplate>                            
                            
    </asp:TemplateField>
                            
                            
    <asp:TemplateField>
                                
    <headertemplate>
                                    Visually Impaired
                                
    </headertemplate>
                                
    <itemtemplate>                                
                                    
    <pbcrm:VisuallyImpairedDDL ID="ddlVisualImp" runat="server" 
                                      SelectedValue
    ='<%#Eval("VisualImp") %>'/>
                                    
    <pbcrm:PBCRMRequiredFieldValidator ID="rfvVisualImp"  
                                            ControlToValidate
    ="ddlVisualImp" 
                                            ErrorMessage
    = '<%#"Visually Impaired for client " + (Container.DataItemIndex + 1).ToString() + " is required"%>'
                                            runat="server"  Display="None"/>
                                
    </itemtemplate>                           
                            
    </asp:TemplateField>                      
                        
    </Columns>
                    
    </pbcrm:PBCRMGridView>   
  • 相关阅读:
    BZOJ 2006: [NOI2010]超级钢琴 [ST表+堆 | 主席树]
    CF 741D. Arpa’s letter-marked tree and Mehrdad’s Dokhtar-kosh paths [dsu on tree 类似点分治]
    CF 716E. Digit Tree [点分治]
    CF 291E. Tree-String Problem [dfs kmp trie图优化]
    CF 208E. Blood Cousins [dsu on tree 倍增]
    CF 246E. Blood Cousins Return [dsu on tree STL]
    CF 570D. Tree Requests [dsu on tree]
    [dsu on tree]【学习笔记】
    测试markdown
    BZOJ 1969: [Ahoi2005]LANE 航线规划 [树链剖分 时间倒流]
  • 原文地址:https://www.cnblogs.com/rockniu/p/1165321.html
Copyright © 2011-2022 走看看