Actually, the calendar I was using is the one that ships with UI Bootstrap.
Are the css and js files for the UI bootstrap included by default in the application?
Hi Ismail,
The post isn't clear enough!!
Is there a more straight forward way? For instance, on gitHub, can I get all files that were changed, or added, or deleted from the last release and then apply that on my local project?
I appreciate your assistance.
Regards Bilal
Hello, I am facing a very complicated scenario here.
I login as admin of Default Tenant. (Id = 1)
Then, I have a table lets call it Events (Stored per Tenant). On the Event record there is Location (Stored as ID on Event record and refers to the ID of a Location).
Location data (I have several locations stored in the system) as stored as tenant-unaware (Saved in Host). Why? Because Locations are shared by all tenants.
Now in my query to return an Event including Location Name, I have to LEFT OUTER JOIN with Location table.
However, I am always getting NULL for the Location Name.
I believe I know what's happening. The query is adding additional filter on Tenant Id.
I have the code something as:
from e in _eventsRepo.GetAll()
join l in _locationsRepo.GetAll() on e.LocationId equals l.Id into JoinLocations
from lo in JoinLocations.DefaultIfEmpty()
select new {
EventId = e.Id,
EventLocation = lo.LocationName
}
The above always returns null for LocationName.
Again, Locations are stored per host, while events are stored per tenant.
I am sure you passed through this before, I truly appreciate your feedback.
Regards Bilal
Hello,
I am trying to find the code where the triggered event AbpHandledExceptionData is being handled?
If possible to refer me to source code.
Thank you. Bilal
Any idea?
Thanks Ismail :)
Can you refer me to a sample code where you use moment to prepare date before sending it to server, other than AuditLog?
Regards Bilal
Hello,
I am browsing the framework code and noticed this code:
public SettingManager(ISettingDefinitionManager settingDefinitionManager, ICacheManager cacheManager)
{
_settingDefinitionManager = settingDefinitionManager;
AbpSession = NullAbpSession.Instance;
SettingStore = DefaultConfigSettingStore.Instance;
As you can see it is using the DefaultconfigSettingStore.
Later on, in the Abp.Zero, it defines a new SettingStore.
Where in the solutions, you configure it to use the Abp.Zero.SettingStore and not the default?
Also, every module can have a SettingsProvider to return Settings. Where in the solutions, do you capture all those settings from each module and store them in db?
Many thanks, Bilal
Hi, I am a bit stuck here.
When sending DateTime values to server, should I do anything special on client side? Like convert the dates to some format or use moment or ?
On the server, I can then use Clock.Normalize(Convert.ToDateTime('Date From Client')) to store the value in UTC in the DB?
On some entities, when I return them to client I notice the CreationTime is "2017-03-09T00:41:42.647Z" for example. I guess, the CreationTime is stored in UTC, so how could I return my values from server in that format?
I am a bit confused in here.
Appreciate your help.
Bilal
That's interesting! First time I know about that. Thanks :)
I didn't add anything, I kept things as is. I will check how the css is loading. Thanks