This file contains hidden or 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
<table style="width:60%"> | |
<tr> | |
<td> | |
<form action="#" method="post" name="job_application" id="job_form"> | |
<fieldset> | |
<legend><h3>Personal Information</h3></legend> | |
<label for="fullname">Full Name:</label> | |
<input type="text" id="name_field" name="name"><br> | |
<label for="address">Home Address:</label> |
This file contains hidden or 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
<table style="width:100%"> | |
<tr> | |
<th>Firstname</th> | |
<th>Lastname</th> | |
<th>Age</th> | |
</tr> | |
<tr> | |
<td>Jill</td> | |
<td>Smith</td> | |
<td>50</td> |
This file contains hidden or 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
package main; | |
import java.io.IOException; | |
import java.text.ParseException; | |
import builder.QueryBuilder; | |
public class App { | |
public static void main(String[] args) throws IOException, ParseException { | |
This file contains hidden or 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
Ext.define('searchadmin.controller.reports.Reports', { | |
extend : 'Ext.app.Controller', | |
requires : [ | |
'searchadmin.view.reports.DynamicGrid', | |
'searchadmin.store.DynamicGridStore' | |
], | |
refs:[ | |
{ |
This file contains hidden or 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
Ext.define('searchadmin.view.reports.Reports', { | |
extend: 'Ext.panel.Panel', | |
alias: 'widget.reports', | |
requires: [ | |
'searchadmin.view.reports.ReportForm' | |
], | |
layout: 'vbox', | |
items : [{ | |
region: 'center', |