Hello, How to include some jQuery plugins or angular plugins on specific pages and not all? I am using cshtml files in an MVC 5 / Angular 1.x app.
Thanks
Hi, I am using bootstrap-select in an angular js project.
Loading data inside the select control works fine. Now it is time to set a value from backend angular js.
The problem is the angular model is changing, but the change is not reflected on the client UI. Here is the code.
...
vm.poc = poc;
//Refresh all selects
refreshSelects();
var selectIds = {
shelters: '#Shelter',
...
};
function refreshSelects() {
//Loop over all select ids from the selectIds
//and trigger a refresh
.each(selectIds, function (value) {
$timeout(function () {
$(value).selectpicker('refresh');
}, 0);
});
}
Hello, So many controls are being used on the existing code. In case I want to use Kendo UI controls, any special consideration to take care of? Any integrations, etc.?
I saw the samples that use the Kendo Grid, it's a matter of adding .css js and proper configuration in the .js controller. Anything else needed to integrate with the Abp Framework
Thanks
Hello, Do you support using postgresql EF? If not, what should be done as a guideline to use this DB?
Thanks
Hi, I need to load some data arrays at app startup on angular.
What's the recommended way given Abp?
I thought of writing a .Factory() that returns an object where inside that object/function I just call the server to load data into local arrays that I can access later on inside the controllers.
Thanks
Hi I wonder is there a way to keep side menu collapsed all the time?
Thanks
Hi, I would like to be able in my Domain Manager to update the State of objects to Deleted, Added, Updated, etc. Then in one single method do a batch SaveChanges() instead of having to update one object at a time.
While using IRepository<T> I couldn't see a place where I can access the Context or be able to change state of entities. How is this doable with this framework?
Thanks
Hi, I noticed in the Features class, the following property:
/// <summary>
/// Display name of the feature.
/// This can be used to show features on UI.
/// </summary>
public ILocalizableString DisplayName { get; set; }
Reading through the comments, this allows us to have a localized string.
How would I then be able to localize such a property? I mean what are the steps required for localization? Or just by having a key of "DisplayName" in the .xml files, it works automagically? Or how?
Thanks
Hi,
I added few new classes designated with Table() attribute and virtual properties. Also, I've added those properties under the DbContext.
I've been trying to add migrations, but still the migration files are being empty for Up() and Down()
What else I should look at?
It's the first time I face this issue.
Thanks
Hi, I have the following generated scripts:
(function(){
abp.clock.provider = abp.timing.utcClockProvider || abp.timing.localClockProvider;
abp.clock.provider.supportsMultipleTimezone = true;
abp.timing.timeZoneInfo = { windows: { timeZoneId: 'Azerbaijan Standard Time', baseUtcOffsetInMilliseconds: '14400000', currentUtcOffsetInMilliseconds: '14400000', isDaylightSavingTimeNow: 'False' }, iana: { timeZoneId:'Asia/Baku' }, }
})();
When I type abp.clock.now() it gives something like: Wed Mar 22 2017 03:00:24 GMT+0200 (GTB Standard Time)
But as you see above, I set myself for a timezone that is +4 GMT.
How come abp.clock.now() gives GMT+2?