Created
February 18, 2011 17:21
-
-
Save fmpwizard/834025 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
override def lowPriority: PartialFunction[Any,Unit] = { | |
case CellToUpdate(index, rowName, version, cssClass, cellNotes) => { | |
info("Comet Actor %s will do a partial update".format(this)) | |
info("[API]: Updating BrowserTestResults for version: %s".format(version)) | |
showingVersion = version | |
/** | |
* each td in the html grid has an id that is | |
* [0-9] + browser name | |
* I use this to uniquely identify which cell to update | |
* | |
*/ | |
partialUpdate( | |
Replace((index + rowName), | |
<td id={(index + rowName)} class={cssClass}>{cellNotes}</td> | |
) | |
) | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment