Go to the link below to see the differences between editions of Sharepoint 2010 Editions Comparison
Måned: april 2012
Microsoft Dynamics Ax
How to loop through a Map in AX 2012
by Bo Jensen •
Map iim = new Map(Types::Integer, Types::Class); MapIterator it; // Add some elements into the map iim.insert(1, new query()); iim.insert(2, new query()); iim.insert(4, new query()); // Create a map iterator it = new MapIterator (iim); // Print "[int -> class] iterator" print it.definitionString(); // Go on for as long as elements are found in the…
Webdevelopment
How Do I Load Page Content Dynamically with jQuery? – ASP.NET Ajax Library
by Bo Jensen •
How Do I Load Page Content Dynamically with jQuery? – ASP.NET Ajax Library
Webdevelopment
3 reasons why you should let Google host jQuery for you
by Bo Jensen •
3 reasons why you should let Google host jQuery for you » Encosia
Sharepoint
Submit a form to outside website from sharepoint
by Bo Jensen •
Sending a form from to outside of a sharepoint implementation is a tedious task, so I am writing a jquery plugin to facilitate that job. As most of .net applications (sharepoint being one of them) it wraps the html code with a form element. For some reason you cannot have a form inside of a…
Webdevelopment
Making “Post” and “Get” forms from SharePoint’s pages | SharePoint
by Bo Jensen •
If you’ve tried to insert a form into a sharepoint’s page you mus have been disappointed. The form just didn’t work. You can’t make the form to post or get to some url, because the whole SharePoint’s page is one big <form> element. So I went a bit deeper on how Microsoft guys are doing…
