Spokane County Court Viewer (2024)

Enter your case number in the field and click the GO button to find case information and court hearings for your case.

' + $('#Title').html() + $('#caseDetail').html(); if ($('#Hearings').is(':visible')) { printData += $('#Hearings').html(); } else { printData += $('#NoHearings').html(); } printData += $('#DocketEntries').html(); openPrintWindow(printData, 800, 600); }); $('#Address').on('show.bs.modal', function (event) { var button = $(event.relatedTarget) // Button that triggered the modal var address1 = button.data('add1') // Extract info from data-* attributes // If necessary, you could initiate an AJAX request here (and then do the updating in a callback). // Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead. var modal = $(this) modal.find('.modal-title').html('Hearing Address

' + address1 + "

") }); function ShowAllCaseDetails(xhr) { //if (CaseNo != currentCaseNo) { // var xhr = $.ajax({ // type: "POST", // url: webservicePrefix + "/WebService/CourtDocViewerService.asmx/DCAllCasesByCaseNumber", // data: "{ CaseNo : '" + CaseNo + "' }", // contentType: "application/json; charset=utf-8", // dataType: "json", // error: function (xhr) { // alert("An error occured: " + xhr.status + " " + xhr.statusText); // }, // success: function (xhr) { // //alert('success'); // UpdateDisplay(xhr.d, CaseNo); // //LoadAttachments(); // } // }); //} } //update the hearings display function UpdateDisplay(objJson) { //alert('updateing display'); //if (json.substr(0, 5) == 'Error' || json.substr(0, 43) == 'System.Web.Services.Protocols.SoapException') { // //alert(json); // $('img.loaderImg').hide(); // $('#NoResult').html('

Error

' + json + '

').slideDown('slow'); // return; //} //var objJson = JSON.parse(json); var dispDate; var caseStatus; var hearingType; var disposition; var dispositionDesc; var archivedYN; var caseToken; var participantNames; var courtInitialsNum; var caseType; var charges; var caseTypeDesc; var court; var courtRoom; var fileDate; var proceedingType; var scheduleDate; var scheduleDateStr; var scheduleTimeStr; // var status; var incidentNumber; var documentItemToken; var hearingStatus; var officialName; var courtRoomAddress; var proceedingSubType; var status; var caseno; var jurisdictiondesc; var leadesc; //clear out the hearings list $('#tblHearings tbody').html(''); var hearingCount = 0; if (objJson.length > 0) { //alert(objJson.length); for (var key in objJson) { if (objJson.hasOwnProperty(key)) { dispDate = objJson[key].DispDate; caseStatus = objJson[key].CaseStatus; hearingType = objJson[key].HearingType; disposition = objJson[key].Disposition; dispositionDesc = objJson[key].DispositionDesc; archivedYN = objJson[key].ArchivedYN; caseToken = objJson[key].CaseToken; participantNames = objJson[key].ParticipantNames; courtInitialsNum = objJson[key].CourtInitialsNum; caseType = objJson[key].CaseTypeSubType; caseTypeDesc = objJson[key].CaseTypeDesc; court = objJson[key].Court; courtRoom = objJson[key].CourtRoom; fileDate = objJson[key].FileDate; proceedingType = objJson[key].ProceedingType; scheduleDate = objJson[key].ScheduleDate; scheduleDateStr = objJson[key].ScheduleDateStr; scheduleTimeStr = objJson[key].ScheduleTimeStr; // status = objJson[key].Status; incidentNumber = objJson[key].IncidentNumber; documentItemToken = objJson[key].DocumentItemToken; hearingStatus = objJson[key].HearingStatus; charges = objJson[key].Charges; officialName = objJson[key].OfficialName; courtRoomAddress = objJson[key].CourtRoomAddress; proceedingSubType = objJson[key].ProceedingSubType; status = objJson[key].HearingStatus; caseno = objJson[key].CaseNumber; jurisdictiondesc = objJson[key].JurisdictionDesc; leadesc = objJson[key].LEADesc; if (!charges) { charges = 'N/A'; } var d = new Date(); var currentDate = new Date(); currentDate.setHours(0); currentDate.setMinutes(0); currentDate.setSeconds(0); currentDate.setMilliseconds(0); if (scheduleDate) { d = ParseJsonDate(objJson[key].ScheduleDate);// scheduleDate = getShortDate(new Date(parseInt(objJson[key].ScheduleDate.substr(6))).toString());// scheduleTime = formatAMPM(d); d.setHours(0); d.setMinutes(0); d.setSeconds(0); d.setMilliseconds(0); //if (d > currentDate) { if (d >= currentDate) { $('#tblHearings tbody').append('

' + hearingType + '' + scheduleDateStr + ' ' + formatTimeStrAMPM(scheduleTimeStr) + '' + courtRoom + '' + courtRoom + '
' + courtRoomAddress + '
' + officialName + '' + status + '

'); } else { $('#tblHearings tbody').append('

' + hearingType + '' + scheduleDateStr + ' ' + formatTimeStrAMPM(scheduleTimeStr) + '' + courtRoom + '' + courtRoom + '
' + courtRoomAddress + '
' + officialName + '' + status + '

'); } hearingCount++; } } } if (hearingCount <= 0) { $('#Hearings').hide(); $('#NoHearings').html('

Hearings

No hearings found for case: ' + caseno + '

').show(); } else { $('#NoHearings').html('').hide(); } //$('#ResultsTitle').html('All Hearings for Case: ' + caseno); if (dispositionDesc) { $('#Title').html('

' + participantNames + ' - ' + dispositionDesc + '

'); } else { $('#Title').html('

' + participantNames + '

'); } if (incidentNumber) { $('#incidentNumber').html('Incident Number: ' + incidentNumber); } else { $('#incidentNumber').html('Incident Number: N/A'); } $('#caseNumber').html('Case: ' + caseno + ''); $('#caseType').html('Case Type: ' + caseType); $('#caseStatus').html('Case Status: ' + caseStatus); $('#court').html('Court: ' + court); $('#charges').html('Charges: ' + charges); $('#fileDate').html('File Date: ' + fileDate); $('#leadesc').html('LEA: ' + leadesc); $('#jurisdictiondesc').html('Jurisdiction: ' + jurisdictiondesc); if (!$('#CaseInfo').is(':visible')) { $('#CaseInfo').slideDown('slow'); } //$('tr.detailrow td.location a.courtlocationoverlay[rel]').overlay({ mask: 'black', effect: 'apple', // onBeforeLoad: function () { // var wrap = this.getOverlay().find('.contentWrap'); // var text = this.getTrigger().find('span').attr('rel'); // wrap.html('

Hearing Address

' + text.replace(' or ', ' or
') + '

'); // $('.apple_overlay').css('width', '250'); // } //}); if (proceedingSubType == "NAME") { $('#tblDocketEntries tbody').append('

' + "Contact District Court to obtain case detail information." + '

'); } else { // ShowDCDocketEntries(caseToken); } } else { $('#NoResult span.caseno').html(caseno); $('#NoResult').slideDown('slow'); } } //function ShowDCDocketEntries(xhr) { // //var xhr = $.ajax({ // // type: "POST", // // url: webservicePrefix + "/WebService/CourtDocViewerService.asmx/DCDocketEntries", // // data: "{ CaseToken : '" + CaseToken + "' }", // // contentType: "application/json; charset=utf-8", // // dataType: "json", // // error: function (xhr) { // // alert("An error occured: " + xhr.status + " " + xhr.statusText); // // }, // // success: function (xhr) { // // //alert('success'); // UpdateDocketDisplay(xhr.d); // // //LoadAttachments(); // // } // //}); //} //function UpdateDocketDisplay(objJson) { // //alert('updating docket display'); // // var objJson = JSON.parse(json); // var caseToken; // var entryDate; // var entry; // $('#tblDocketEntries tbody').html(''); // if (objJson.length > 0) { // for (var key in objJson) { // if (objJson.hasOwnProperty(key)) { // caseToken = objJson[key].DKT_CS_TK; // entryDate = objJson[key].DKT_DT; // entry = objJson[key].DKT_DES_TX; // $('#tblDocketEntries tbody').append('

' + entryDate + '' + entry + '

'); // } // } // } //}

Hearing Address

Spokane County Court Viewer (2024)
Top Articles
Latest Posts
Article information

Author: Dean Jakubowski Ret

Last Updated:

Views: 6405

Rating: 5 / 5 (70 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Dean Jakubowski Ret

Birthday: 1996-05-10

Address: Apt. 425 4346 Santiago Islands, Shariside, AK 38830-1874

Phone: +96313309894162

Job: Legacy Sales Designer

Hobby: Baseball, Wood carving, Candle making, Jigsaw puzzles, Lacemaking, Parkour, Drawing

Introduction: My name is Dean Jakubowski Ret, I am a enthusiastic, friendly, homely, handsome, zealous, brainy, elegant person who loves writing and wants to share my knowledge and understanding with you.