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
| var barcodeWin = new Ext.Window({ | |
| title: 'Scan Barcode', | |
| width: 220, | |
| height: 110, | |
| //minWidth: 300, | |
| //minHeight: 200, | |
| layout: 'fit', | |
| plain: true, | |
| bodyStyle: 'padding:5px;', | |
| buttonAlign: 'center', |
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
| <?php | |
| /** | |
| * This file is part of the Propel package. | |
| * For the full copyright and license information, please view the LICENSE | |
| * file that was distributed with this source code. | |
| * | |
| * @license MIT License | |
| */ |
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
| <?php | |
| try { | |
| $projectDir = '/yourprojectfolder'; | |
| $appName = 'MyApp'; | |
| $schemaPath = $projectDir."/app/config/schema.xml"; | |
| if (!is_file($schemaPath)) { | |
| throw new Exception("File $schemaPath gagal dibuka, proses reverse gagal.."); |
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
| using System; | |
| using System.Data; | |
| using System.Data.SqlTypes; | |
| using System.Data.SqlClient; | |
| using Microsoft.SqlServer.Server; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.IO; | |
| using System.Xml; |
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
| import Category from '../models/category'; | |
| import Meal from '../models/meal'; | |
| export const CATEGORIES = [ | |
| new Category('c1', 'Italian', '#f5428d'), | |
| new Category('c2', 'Quick & Easy', '#f54242'), | |
| new Category('c3', 'Hamburgers', '#f5a442'), | |
| new Category('c4', 'German', '#f5d142'), | |
| new Category('c5', 'Light & Lovely', '#368dff'), | |
| new Category('c6', 'Exotic', '#41d95d'), |