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.

Spokane County Court Viewer (1)

X

Print

Hearings

Hearing Type Date/Time Location Official Name Status

Hearings

' + $('#Title').html() + $('#caseDetail').html(); if ($('#Hearings').is(':visible')) { printData += $('#Hearings').html(); } else { printData += $('#NoHearings').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 ShowCaseHearingDetails(xhr) { //var xhr = $.ajax({ // type: "POST", // url: webservicePrefix + "/WebService/CourtDocViewerService.asmx/DCHearingsByCaseNumber", // 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); // //LoadAttachments(); // } //}); } //update the dashboard display with project info function UpdateDisplay(objJson) { //alert('updateing display'); 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 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; 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 + '' + hearingStatus + '

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

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

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

Hearings

No hearings 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'); // } //}); } 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(json) { //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)

References

Top Articles
Latest Posts
Article information

Author: Pres. Lawanda Wiegand

Last Updated:

Views: 6182

Rating: 4 / 5 (51 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Pres. Lawanda Wiegand

Birthday: 1993-01-10

Address: Suite 391 6963 Ullrich Shore, Bellefort, WI 01350-7893

Phone: +6806610432415

Job: Dynamic Manufacturing Assistant

Hobby: amateur radio, Taekwondo, Wood carving, Parkour, Skateboarding, Running, Rafting

Introduction: My name is Pres. Lawanda Wiegand, I am a inquisitive, helpful, glamorous, cheerful, open, clever, innocent person who loves writing and wants to share my knowledge and understanding with you.