forked from vitmalina/w2ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing a few typos, semicolons, etc.
- Loading branch information
Showing
110 changed files
with
251 additions
and
251 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ <h1>Sidebar & Grid</h1> | |
{ field: 'fname', caption: 'First Name', size: '180px' }, | ||
{ field: 'lname', caption: 'Last Name', size: '180px' }, | ||
{ field: 'email', caption: 'Email', size: '40%' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'John', lname: 'Doe', email: '[email protected]', sdate: '4/3/2012' }, | ||
|
@@ -81,10 +81,10 @@ <h1>Sidebar & Grid</h1> | |
records: [ | ||
{ recid: 1, state: 'Open', title: 'Short title for the record', priority: 2 }, | ||
{ recid: 2, state: 'Open', title: 'Short title for the record', priority: 3 }, | ||
{ recid: 3, state: 'Closed', title: 'Short title for the record', priority: 1 }, | ||
{ recid: 3, state: 'Closed', title: 'Short title for the record', priority: 1 } | ||
] | ||
} | ||
} | ||
}; | ||
|
||
$(function () { | ||
// initialization | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<div class="content"> | ||
<div id="example_title"> | ||
<h1>Grid & Edit</h1> | ||
The demo below features a resiabled layout with two panels, a grid and edit that are connected. You can click on the record in the grid | ||
and it will be displaed in the form. If you edit the form and click the Save button it will save records into the grid. | ||
The demo below features a resizable layout with two panels, a grid and edit that are connected. You can click on the record in the grid | ||
and it will be displayed in the form. If you edit the form and click the Save button it will save records into the grid. | ||
</div> | ||
<div id="example_view"></div> | ||
<div id="example_code"></div> | ||
|
@@ -33,7 +33,7 @@ <h1>Grid & Edit</h1> | |
{ field: 'fname', caption: 'First Name', size: '33%', sortable: true, searchable: true }, | ||
{ field: 'lname', caption: 'Last Name', size: '33%', sortable: true, searchable: true }, | ||
{ field: 'email', caption: 'Email', size: '33%' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px', render: 'date' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px', render: 'date' } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'John', lname: 'Doe', email: '[email protected]', sdate: '4/3/2012' }, | ||
|
@@ -92,7 +92,7 @@ <h1>Grid & Edit</h1> | |
} | ||
} | ||
} | ||
} | ||
}; | ||
|
||
$(function () { | ||
// initialization | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ <h1>Layout & Dynamic Tabs</h1> | |
} | ||
} | ||
} | ||
} | ||
}; | ||
|
||
$(function () { | ||
// initialization | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div class="content"> | ||
<div id="example_title"> | ||
<h1>Popup & Grid</h1> | ||
The demo below features a popup with a resiabled layout with two panels. One panel has a grid and the second has a form. The grid | ||
The demo below features a popup with a resizable layout with two panels. One panel has a grid and the second has a form. The grid | ||
and the form are connected to each other. | ||
</div> | ||
<div id="example_view"></div> | ||
|
@@ -31,7 +31,7 @@ <h1>Popup & Grid</h1> | |
{ field: 'fname', caption: 'First Name', size: '33%', sortable: true, searchable: true }, | ||
{ field: 'lname', caption: 'Last Name', size: '33%', sortable: true, searchable: true }, | ||
{ field: 'email', caption: 'Email', size: '33%' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px', render: 'date' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px', render: 'date' } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'John', lname: 'Doe', email: '[email protected]', sdate: '4/3/2012' }, | ||
|
@@ -88,7 +88,7 @@ <h1>Popup & Grid</h1> | |
} | ||
} | ||
} | ||
} | ||
}; | ||
|
||
$(function () { | ||
// initialization in memory | ||
|
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ <h1>Select/Unselect Records</h1> | |
{ field: 'lname', caption: 'Last Name', size: '30%', sortable: true }, | ||
{ field: 'fname', caption: 'First Name', size: '30%', sortable: true }, | ||
{ field: 'email', caption: 'Email', size: '40%', sortable: true }, | ||
{ field: 'sdate', caption: 'Start Date', size: '90px', sortable: true }, | ||
{ field: 'sdate', caption: 'Start Date', size: '90px', sortable: true } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'John', lname: 'doe', email: '[email protected]', sdate: '4/3/2012' }, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ <h1>Column Sort</h1> | |
{ field: 'lname', caption: 'Last Name', size: '30%', sortable: true }, | ||
{ field: 'fname', caption: 'First Name', size: '30%', sortable: true }, | ||
{ field: 'email', caption: 'Email', size: '40%', sortable: true }, | ||
{ field: 'sdate', caption: 'Start Date', size: '90px', sortable: true }, | ||
{ field: 'sdate', caption: 'Start Date', size: '90px', sortable: true } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'John', lname: 'Doe', email: '[email protected]', sdate: '1/3/2012' }, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<div id="example_title"> | ||
<h1>Column Groups</h1> | ||
The column headers of the grid can be displayed in a single line or they can be grouped. The example below demonstrates how to | ||
define column header groups so that several columns appear groupped. | ||
define column header groups so that several columns appear grouped. | ||
</div> | ||
<div id="example_view"></div> | ||
<div id="example_code"></div> | ||
|
@@ -36,7 +36,7 @@ <h1>Column Groups</h1> | |
{ field: 'email', caption: 'Email', size: '40%', sortable: true, resizable: true }, | ||
{ field: 'sdate', caption: 'Start', size: '90px', sortable: true, resizable: true }, | ||
{ field: 'edate', caption: 'End', size: '90px', sortable: true, resizable: true }, | ||
{ field: 'udate', caption: 'Update', size: '90px', sortable: true, resizable: true }, | ||
{ field: 'udate', caption: 'Update', size: '90px', sortable: true, resizable: true } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'Jane', lname: 'Doe', email: '[email protected]', sdate: '4/3/2012', edate: '12/3/2012' }, | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ <h1>Simple Search</h1> | |
{ field: 'lname', caption: 'Last Name', size: '30%', sortable: true }, | ||
{ field: 'fname', caption: 'First Name', size: '30%', sortable: true }, | ||
{ field: 'email', caption: 'Email', size: '40%' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'Jane', lname: 'Doe', email: '[email protected]', sdate: '4/3/2012' }, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ <h1>Advanced Search</h1> | |
{ field: 'lname', caption: 'Last Name', size: '30%', sortable: true }, | ||
{ field: 'fname', caption: 'First Name', size: '30%', sortable: true }, | ||
{ field: 'email', caption: 'Email', size: '40%' }, | ||
{ field: 'sdate', caption: 'Start Date', render: 'date:mm/dd/yyyy', size: '120px' }, | ||
{ field: 'sdate', caption: 'Start Date', render: 'date:mm/dd/yyyy', size: '120px' } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'Jane', lname: 'Doe', email: '[email protected]', sdate: 384052483664 }, | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ <h1>Master -> Details</h1> | |
{ field: 'lname', caption: 'Last Name', size: '30%', sortable: true }, | ||
{ field: 'fname', caption: 'First Name', size: '30%', sortable: true }, | ||
{ field: 'email', caption: 'Email', size: '40%' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'John', lname: 'doe', email: '[email protected]', sdate: '4/3/2012' }, | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ <h1>Render to a New Box</h1> | |
{ field: 'lname', caption: 'Last Name', size: '30%', sortable: true }, | ||
{ field: 'fname', caption: 'First Name', size: '30%', sortable: true }, | ||
{ field: 'email', caption: 'Email', size: '40%' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' }, | ||
{ field: 'sdate', caption: 'Start Date', size: '120px' } | ||
], | ||
records: [ | ||
{ recid: 1, fname: 'Jane', lname: 'Doe', email: '[email protected]', sdate: '4/3/2012' }, | ||
|
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
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
Oops, something went wrong.