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
| <template> | |
| <p>Change value in one of the cells in the first 2 columns</p> | |
| <v-grid | |
| class="col-md-6" | |
| style="height:350px" | |
| v-row-height="36" | |
| v-header-height="50" | |
| v-multi-select="true" | |
| v-collection.bind=myCollection | |
| v-grid-row-data-edited.delegate="rowDataEdited($event)" |
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
| <template> | |
| <div class="row"> | |
| <v-grid | |
| class="col-md-6" | |
| style="height:350px" | |
| v-row-height="25" |
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
| download node: https://nodejs.org/en/ version 6.x.x | |
| install node | |
| npm set progress=false | |
| download git : https://git-scm.com/downloads | |
| install git (with defaults) | |
| open powershell.exe with admin access | |
| npm install --global --production windows-build-tools npm@next | |
| restart pc | |
| go under my documents shift-click -> select "open command window here" | |
| git clone https://github.com/monterey-framework/monterey |
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
| <template> | |
| <require from="valueConverters"></require> | |
| <require from="v-grid-control-form.html"></require> | |
| <div class="row"> | |
| <v-grid | |
| class="col-md-6" | |
| style="height:350px" | |
| v-row-height="25" | |
| v-header-height="50" |
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
| http://discuss.cocos2d-x.org/t/how-to-pass-parameters-between-scenes-transition-scenes-in-cocos-creator/30364/3 |
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
| <template> | |
| <div id="tools"> | |
| <button if.bind="!showTools" click.delegate="showConfig()" >Show config</button> | |
| <button if.bind="!showTools" click.delegate="generateImage()" >generateImage</button> | |
| <div class="col-md-12 col-md-offset-1" if.bind="showTools"> | |
| <h3>Block generator</h3> | |
| <div class="row"> | |
| <button click.delegate="generate()">Generate</button> | |
| </div> |
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
| <template> | |
| <div id="tools"> | |
| <button click.delegate="generate()">Generate</button> | |
| <textarea value.bind="textArea"></textarea> | |
| </div> | |
| <div style="width:100%;height:100%" id="cy"></div> | |
| </template> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link href="styles.css" rel="stylesheet" /> | |
| <meta charset=utf-8 /> | |
| <meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui"> | |
| <title>Compound nodes</title> | |
| <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/2.7.0/cytoscape.min.js"></script> |
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
| <template> | |
| <require from="valueConverters"></require> | |
| <require from="v-grid-control-form.html"></require> | |
| <button click.delegate="simpleSortBtn('name')">sort by name</button> | |
| <button click.delegate="multisort('name')">multisort</button> | |
| <div class="row"> | |
| <style> | |
| .select-helper { |
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
| <template> | |
| <require from="valueConverters"></require> | |
| <require from="v-grid-control-form.html"></require> | |
| <button click.delegate="simpleSortBtn('name')">sort by name</button> | |
| <button click.delegate="multisort('name')">multisort</button> | |
| <div class="row"> | |
| <v-grid | |
| class="col-md-6" | |
| style="height:350px" |