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
Italian Bread Recipe - Top Recipes
Perfect Sticky Toffee Pudding. British comfort food! NEW RECIPE VIDEO!!!
Strange World Showtimes Near Amc Brazos Mall 14
Jody Plauche Wiki
Fnv Mr Cuddles
Warren County Skyward
Becu Turbotax Discount Code
What does JOI mean? JOI Definition. Meaning of JOI. OnlineSlangDictionary.com
Edward Scissorhands 123Movies
Tamara Lapman
Pierced Universe Coupon
Pokemon Infinite Fusion Good Rod
Restaurant-grevesmuehlen in Freiburg im Breisgau
Karen Canelon Only
How 'The Jordan Rules' inspired template for Raiders' 'Mahomes Rules'
Amazing Lash Bay Colony
The Exorcist: Believer Showtimes Near Regal Waugh Chapel
Battlenet We Couldn't Verify Your Account With That Information
Coleman Funeral Home Olive Branch Ms Obituaries
Weather Arlington Radar
Eaglecraft Minecraft Unblocked
Antonios Worcester Menu
Reptile Expo Spokane
Pennys Department Store Near Me
Dell Optiplex 7010 Drivers Download and Update for Windows 10
Perry County Mugshots Busted
Calamity Shadow Fish
Why Zero Raised to the Zero Power is defined to be One « Mathematical Science & Technologies
Adventhealth Employee Handbook 2022
Minor Additions To The Bill Crossword
Should Jenn Tran Join 'Bachelor in Paradise'? Alum Mari Pepin Weighs In
Sentara Norfolk General Visiting Hours
Ontpress Fresh Updates
Late Bloomers Summary and Key Lessons | Rich Karlgaard
Walgreens Rufe Snow Hightower
Hospice Thrift Store St Pete
Warrior Badge Ability Wars
Craigslist Pinellas County Rentals
Smarthistory – Leonardo da Vinci, “Vitruvian Man”
Scarabaeidae), with a key to related species – Revista Mexicana de Biodiversidad
Rage Of Harrogath Bugged
Limestone Bank Hillview
Congdon Heart And Vascular Center
Z93 Local News Monticello Ky
Incident Manager (POS & Kiosk) job in Chicago, IL with McDonald's - Corporate
4225 Eckersley Way Roseville Ca
Green Press Gazette Obits
4Myhr Mhub
Busted Newspaper Lynchburg County VA Mugshots
Akc Eo Tryouts 2022
Transportationco.logisticare
C Weather London
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.