Tuesday, July 28, 2015

Twitter bootstrap popover close all before opening a new one

Here a simple solution

$('.link-popover').click(function(){
    $('.link-popover').not(this).popover('hide');
});

Thanks

Saturday, July 18, 2015

Php/Mysql date saved as '0000-00-00'

The date format in Mysql is yyyy-mm-dd. Therefore we should convert the date as "Y-m-d".

$newdate= date("Y-m-d", strtotime($date));

Wednesday, July 1, 2015

ModelState.IsValid always false

Put this line above ModelState condition and check the values you getting for variable errors.

var errors = ModelState.Values.SelectMany(v => v.Errors);
 
 

How to Create Events Using Microsoft Graph API with Delegated Permissions and MSAL.js

Microsoft Graph API provides powerful capabilities to interact with Microsoft 365 services. In this guide, we’ll explore how to create calen...