or
Hi:
I have a a problem; I have a grid with select column , and when a want to select all the records I receive this error: "Stop running this script?", my grid has about 2300 records, when the number of records is less I dont have this problem, I try using the paging but when i want to select all records this accion only select the records from the selected page.
What can I do????
private void SetEditorMode() { this.HelpContentRadEditor.ToolbarMode = EditorToolbarMode.Floating; this.HelpContentRadEditor.EditModes = EditModes.Preview; }function OnClientLoad(editor, args) { setTimeout(function () { editor.set_mode(4); }, 150);}<asp:ObjectDataSource runat="server" ID="MemberSubmissionData" TypeName="FacultyAnnualReview" SelectMethod="BindNestedView"> <SelectParameters> <asp:Parameter Name="SubmissionId" Type="Int32" /> </SelectParameters> </asp:ObjectDataSource>
public FacultyMemberSubmission BindNestedView(int submissionId) { return ( from data in GetFacultyMemberSubmissions() where data.SubmissionId == submissionId select data ).SingleOrDefault(); }