Base solution for your next web application

Activities of "fahad"

index.js

(function () {
    appModule.controller('tenant.views.projects.index', [
        '$scope', 'abp.services.app.projects',
        function ($scope, ProjectService) {
          
            var vm = this;
            vm.projects = [];
            
            ProjectService.GetProjects({}).success(function (result) {
                
                vm.projects = result.items;
              
              }

            )
           
            //start from here...
        }
    ]);
})();

index.chtml

<div ng-controller="tenant.views.projects.index as vm">
    <div class="row margin-bottom-5">
        <div class="col-xs-6">
            <div class="page-head">
                <div class="page-title">
                    <h1>
                        <span>@L("projectnames")</span> 
                    </h1>
                </div>
            </div>
        </div>
        
    </div>
    <div class="portlet light margin-bottom-0">
        <div class="portlet-body">
            <h3>@L("Projects")</h3>
            <div class="list-group">
                <a href="javascript:;" class="list-group-item"  ng-repeat="project in vm.projects">
                    <h4 class="list-group-item-heading"
                        ddd {{project.DeptDesc}}
                        </h4>

                </a>
             
            </div>
    </div>
</div>
</div>
Question

Hello, There are 2 designs for jtable depend on Multi-Page MVC & Angular. multi-Page MVC [attachment=1:21rg61nf]MVCTable.png[/attachment:21rg61nf] Angular [attachment=0:21rg61nf]AngularTable.png[/attachment:21rg61nf]

How can I use (Jtable design - Angular ) in Multi-Page MVC ?

Regards,

Yes. I did. But it does not show data. [ Angular error as below ] [attachment=0:1koovo7t]error2.png[/attachment:1koovo7t] By the way , my service is working with Multi MVC.

Thanks,

Answer

Thanks,

Question

Hi, In Angular [ index.js] , Could do tell me what 'abp.services.app.person' does it mean ? In application service , I have added folder [ MasterKeys ] then [ Projects ] and files for services. So what will the path above to call function in service? [attachment=0:280hukhq]adb.png[/attachment:280hukhq]

Thanks,

Answer

Hi, I see this link. But I need a guide to know where are the area , files to change in theme ?

Thanks,

Question

Hello, For theme in aspnetzero , you are using [keenthemes]. Theme No 4 ( <a class="postlink" href="http://keenthemes.com/preview/metronic/theme/admin_4/index.html">http://keenthemes.com/preview/metronic/ ... index.html</a> ) , I want to use theme No.1 (<a class="postlink" href="http://keenthemes.com/preview/metronic/theme/admin_1/index.html">http://keenthemes.com/preview/metronic/ ... index.html</a>). How can I change it ?

Regards,

Answer

There are (CreationDate & CreationUserID ) only , I want also ( ModifiedData, ModifiedUserID)

Thanks,

Showing 1 to 10 of 15 entries