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);
 
 

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...