Angular: File2GUI_Add_More_Buttons
http://angularjs.org/
by rishi007bansod
HTML
<script src="http://code.angularjs.org/angular-1.0.0rc8.js"></script>
<script type="text/ng-template" id="tree_item_renderer.html">
<!-- Change Background color once option is selected -->
<div ng-show="!(data.name=='UserDictionaryRecord')"
ng-style="(!(data.sel_option === optionTemplates[0]) && !(data.functionToApply === blisterPackTemplates[0])&&!(data.dummy === ''))&&{'background-color':'gainsboro'}">
<span class="nowrap" ng-show="!(data.name=='UserDictionaryRecord')"
ng-mouseover="open = true"
ng-mouseleave="open = false">{{data.name}}</span>
<!--{{data.name}},{{data.showOptions}},{{data.functionToApply}},{{data.sel_option}},{{data.dummy}}-->
<select ng-model="data.sel_option"
ng-change="updateDisplay()"
data-ng-options="optionTemplate as optionTemplate.name for optionTemplate in optionTemplates"
ng-init="data.sel_option = optionTemplates[0]"
ng-show="(data.showOptions=='true') && open"
>
</select>
<select ng-model="data.functionToApply"
ng-change="updateDisplay()"
data-ng-options="blisterPackTemplate as blisterPackTemplate.name for blisterPackTemplate in blisterPackTemplates"
ng-init="data.functionToApply = blisterPackTemplates[0]"
ng-show="(data.showOptions=='true') && open"
>
</select>
<span class="nowrap" ng-show="(data.showOptions=='true') && open">Dummy:</span><input type="text" ng-show="(data.showOptions=='true') && open"
ng-change="updateDisplay()"
ng-model="data.dummy" value="" />
</div>
<ul>
<li ng-repeat="data in data.nodes" ng-include="'tree_item_renderer.html'"></li>
</ul>
</script>
<input type="file" id="files" name="files[]" multiple />
<output id="list"></output>
<div ng-app="Application" ng-controller="TreeController">
<ul>
<li ng-repeat="data in tree" ng-model="json" ng-include="'tree_item_renderer.html'"></li>
</ul>
<button ng-click="expFile()">Export MetaFile2</button>
<textarea rows="40" cols="100" ng-model="displayFileContent"...
CSS
ul {
list-style: circle;
}
li {
margin-left: 20px;
}
.nowrap {
white-space: nowrap;
}
JavaScript
angular.module("myApp", []).
controller("TreeController", ['$scope', function($scope) {
//Option for showing content when mouse is hovered....
$scope.open = false;
$scope.tree = [{
name: "UserDictionaryRecord",
functionToApply: "",
sel_option: "",
dummy: "",
showOptions:"true",
nodes: []
}];
var outDataString = "";
function GenerateMetaFile(temp_tree, temp_parent_list, len){
for(var k = 0; k < len; k++)
{
list_copy_for_children = temp_parent_list.slice();
list_copy_for_children.push(temp_tree[k].name)
//temp_parent_list.push(temp_tree[k].name)
//for(var tt in temp_parent_list)
if((temp_tree[k].functionToApply.name!="Select Function")&&(temp_tree[k].dummy!=""))
{
if(temp_tree[k].sel_option.name == "this")
{
//console.log('inside this.................')
for(i = 2; i < (temp_parent_list.length-1); i++ )
{
outDataString = outDataString + temp_parent_list[i]+","
}
//Adding Outer Key....
outDataString = outDataString + temp_parent_list[(temp_parent_list.length-1)]+",";
//Adding Inner Key....
outDataString = outDataString + temp_tree[k].name+",";
//Adding Selected Function....
outDataString = outDataString + temp_tree[k].functionToApply.name+",";
//Adding Dummy Variable Value....
outDataString = outDataString + temp_tree[k].dummy+"\n";
}
else if((temp_tree[k].sel_option.name == "0")||(temp_tree[k].sel_option.name == "1"))
{
//console.log('inside 0/1.................')
for(i = 2; i < temp_parent_list.length; i++ )
{
outDataString = outDataString + temp_parent_list[i]+","
}
//Adding Outer Key....
...