Posts

Showing posts from November, 2012

Picasa Error : the current user is not allowed to install or update applications

Image
While installing Picasa on my newly installed OS on my machine i got this error " the current user is not allowed to install or update applications". after googling and spending sometime i got that its not actually picasa issue, its because of my OS and i tried a solution that worked for me. Solution 1. Go to Server Manager >> Features >> Add Feature  2. Check Deskop Experiance and install it. 3. Reboot the system and its gone.

How to use Checkbox in Kendo UI open source Grid

You can easily put a checkbox in Kendo UI Grid. Just define its template while defining the columns  See the code below... scrollable: true,                         sortable: true,                         filterable: true,                         columns: [                             {                                 field: "FirstName",                                 title: "Location (City Country)",                                 width: 100                             },                             {                                 field: "LastName",                                 title: "Institution",                                 width: 100                             },                             {                                 field: "City",                                 title: "Select",                                 width: 100,                                 t

How to Pass a Model in MVC Jquery AJAX call?

I got this simple solution from stackoverflow and it worked for me. Model: public class AddressInfo { public string Address1 { get ; set ; } public string Address2 { get ; set ; } public string City { get ; set ; } public string State { get ; set ; } public string ZipCode { get ; set ; } public string Country { get ; set ; } } Controller: public class HomeController : Controller { public ActionResult Index () { return View (); } [ HttpPost ] public ActionResult Check ( AddressInfo addressInfo ) { return Json ( new { success = true }); } } script in View: < script type = "text/javascript" > var ai = { Address1 : "423 Judy Road" , Address2 : "1001" , City : "New York" , State : "NY" , ZipCode : "10301" , Country : "USA&quo