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
private static void printHTML(Node target) | |
{ | |
if(target.hasBache()) | |
{ | |
ArrayList<Node> temp = target.getKids(); | |
for(int i = 0; i < temp.size(); i++) | |
{ | |
Node child = temp.get(i); | |
if(child.isTag()) | |
{ |
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
professionsTable.addEventListener('click', function(e) | |
{ | |
if (e.row.path) | |
{ | |
var win = Ti.UI.createWindow({ | |
url: e.row.path, | |
title: e.row.title | |
}); | |
var profession = e.row.title; |