Click here to Skip to main content
15,888,243 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi i have a column in my grid file status..I"ve made its allowfiltering property to true,
but when i"m filtering it is giving the following error:

An unknown exception occurred while connecting to the server. The possible reasons could be- 1) Expiration of Session or 2) Injection of Special character(s), where not allowed (for example using <> in filters or forms) or 3) Internet Connection failure. Please Re-login, remove special characters or check internet connection. If problem persists contact System Admin.
Posted

could you put your code please to see error
 
Share this answer
 
HI
this is what i"ve done so far:
C#
 <lpsfs:sysxgrid runat="server" id="grdZipUploadCodes" allowpaging="True" pagesize="10" xmlns:lpsfs="#unknown">
               AutoGenerateColumns="false" OnNeedDataSource="grdZipUploadCodes_NeedDataSource" AllowFilteringByColumn="true"
               OnItemDataBound="grdZipUploadCodes_ItemDataBound">
               <clientsettings enablerowhoverstyle="true">
                   <selecting allowrowselect="true"></selecting>
               </clientsettings>

               <exportsettings>
                   <pdf pageheight="210mm" pagewidth="297mm" pagetitle="Zip Code Staging." defaultfontfamily="Arial Unicode MS">
                       PageBottomMargin="20mm" PageTopMargin="20mm" PageLeftMargin="20mm" PageRightMargin="20mm" />
               </pdf></exportsettings>
               <mastertableview commanditemdisplay="Top" datakeynames="FileLogID">
                   <commanditemsettings showaddnewrecordbutton="false" />
                   <columns>
                       <telerik:gridboundcolumn datafield="FileLogID" sortexpression="FileLogID" headertext="FileLog ID" xmlns:telerik="#unknown">
                       </telerik:gridboundcolumn>
                       <telerik:gridboundcolumn uniquename="FileReceivedName" headertext="File Name" xmlns:telerik="#unknown">
                       </telerik:gridboundcolumn>
                       <telerik:gridboundcolumn headertext="File Status" uniquename="FileStatus" allowfiltering="true" xmlns:telerik="#unknown">
                       </telerik:gridboundcolumn>
</columns>
                   <pagerstyle mode="NextPrevAndNumeric" alwaysvisible="true" pagertextformat=" {4} {5} Item(s) in {1} page(s)" />
               </mastertableview>
           </lpsfs:sysxgrid>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900