Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "huntethan89"

Answer

I have seen that already and it states- "In AspNet Zero, Tenant, User and Role entities are abstract in the framework, others are not. "

So, since they are not allowing to extend this entity, I have created a separate table and storing the OU ID there and adding other fields as a solution.

Answer

Hi,

No, it didn't work, i am using google chrome.

Thanks

Answer

Hi,

I checked the link you provided. I had added the class and method in Mpanvagation class. But where to call this method.

Thanks

Hi ,

yes , Console.log('modal opened..') . its working.. I have added all code here. Its working fine now. There is some Mismatch in modal data. I had created modal from starting now working fine. :) Thanks

Hi, yes, i tried this. It didn't work. i had write the code as below.

code:-

(function($) { app.modals.ReportModel = function () {

    var _modalManager;

    this.init = function(modalManager) {
        _modalManager = modalManager;

        _modalManager.getModal().on('show.bs.modal', function (e) {
            //write your code here which will run on every shown of this modal.
            $('#ReportSelection').change(function () {
                $('.modal-title span').text($('#ReportSelection :selected').text() + " #");
                closeall($('#ReportSelection :selected').val());
                $('#Report' + $('#ReportSelection :selected').val()).slideDown("fast");
            });

            function closeall(dontclose) {
                var i = 1;
                for (i = 1; i < 12; i++) {
                    if (i != dontclose)
                        $('#Report' + i).slideUp('fast');
                }
            }
        });


    };

    this.save = function () {
        //Save your modal here...
    };
};

})(jQuery);

thanks

Hi,

        I am using MVC with jquery. my modal.js code is as follows.

(function($) { app.modals.ReportModel = function () {

    var _modalManager;

    this.init = function(modalManager) {
        _modalManager = modalManager;
      
        //Initialize your modal here...
    };

    this.save = function () {
        //Save your modal here...
    };
};

$('#ReportSelection').change(function () {
    $('.modal-title span').text($('#ReportSelection :selected').text()+ " #");
    closeall($('#ReportSelection :selected').val());
    $('#Report' + $('#ReportSelection :selected').val()).slideDown("fast");
});

function closeall(dontclose) {
    var i = 1;
    for (i = 1; i < 12; i++) {
        if(i!=dontclose)
            $('#Report' + i).slideUp('fast');
    }
}

})(jQuery);

Thanks

Hi,

yes, Its problem regarding table. Now its resolved now.

Thanks

Hi, I haven't find anything in Logs.txt . But i noted something. I implemented same thing in other pages. Like i have one more page in which i am using database table named "UserDetails". It is working fine. All data is displaying in jtable.

The only difference i noted in both tables one is FileDetails (using previously) and other is UserDetails (using now) is that filedetails table contains Foreign keys and userdetails not. Does foreign keys has anything to do with this error ?

Thanks

Hi, Yes, i am attaching error with this.

Thanks

Hi,

The library which conflicts is not the inner library. I am using some external library (name - ays-beforeunload-shim.js).

No, i didn't update the mustache.js.

Any solution regarding console error which I discussed before ?

Thanks.

Showing 101 to 110 of 122 entries