nraykov.wordpress.com
Some thoughts on web 2.0 development | by Nikolay Raykov | Page 2
https://nraykov.wordpress.com/page/2
Some thoughts on web 2.0 development. Output XML Using Strongly Typed Views in ASP.NET MVC. June 17, 2010. Recently I had to create an export to XML functionality in an ASP.NET MVC application. The first thing that came up to my mind was to use LINQ to XML to serialize my entity and then write it to the output stream with the FileStreamResult. Class It could not be much more easy, right? Here is my sample User class that would be used to generate the XML file:. LastName { get; set; } public. Now you are ...
hyankov.wordpress.com
SharePoint 2013 People & Groups field as a dropdown with predefined choices | Hristo Yankov's Blog
https://hyankov.wordpress.com/2015/07/15/sharepoint-2013-people-groups-field-as-a-dropdown-with-predefined-choices
Hristo Yankov's Blog. My online brain dump. How to override the NewDocSet.aspx redirect. Workaround: PnP Sites Core not provisioning Sub Web Security! SharePoint 2013 People and Groups field as a dropdown with predefined choices. July 15, 2015. If you are in the SharePoint consulting business, by no doubt you have already heard the following customer requirement:. We need a SharePoint field, which allows the user to pick one of the few predefined groups we have defined there. Field ID="{GUID Here}" Name=...
hyankov.wordpress.com
How to override the NewDocSet.aspx redirect | Hristo Yankov's Blog
https://hyankov.wordpress.com/2015/06/02/how-to-override-the-newdocset-aspx-redirect
Hristo Yankov's Blog. My online brain dump. SharePoint 2013 Refiner Multi-Value (‘Contains’ instead of an ‘Equals’). SharePoint 2013 People and Groups field as a dropdown with predefined choices →. How to override the NewDocSet.aspx redirect. June 2, 2015. If you are opening the NewDocSet.aspx page in a dialog, similarly to this:. Options.url = L Menu BaseUrl "/ layouts/15/NewDocSet.aspx? Override the redirect behavior of NewDocSet.aspx. For (var i = 0; i frames.length; i ) {. Find the frame of the dialog.
nraykov.wordpress.com
Architecting Loosely Coupled ASP.NET MVC Web Applications Talk | Some thoughts on web 2.0 development
https://nraykov.wordpress.com/2011/06/06/architecting-loosely-coupled-asp-net-mvc-web-applications-talk
Some thoughts on web 2.0 development. Architecting Loosely Coupled ASP.NET MVC Web Applications Talk. Architecting Loosely Coupled ASP.NET MVC Web Applications Talk. June 6, 2011. Last week Kaloyan Bochevski. Our agenda covered a lot of areas even though it was mainly focused on how to design a loosely coupled ASP.NET MVC application. This was our list for the talk:. Dependency Injection with Spring.NET. JQuery Grid with Model Binders. Unobtrusive Validation with Data Annotations. March 7, 2015 at 4:17 pm.
nraykov.wordpress.com
ASP.NET MVC 3: Unobtrusive Client Side Validation | Some thoughts on web 2.0 development
https://nraykov.wordpress.com/2011/06/06/asp-net-mvc-3-unobtrusive-client-side-validation
Some thoughts on web 2.0 development. ASPNET MVC 3: Unobtrusive Client Side Validation. ASPNET MVC 3: Unobtrusive Client Side Validation. June 6, 2011. In this post we will look at one of the new features of the fresh new release of ASP.NET MVC 3 – using unobtrusive client side validation through the new HTML5 data-*. Attributes. I will show what these attributes look like and how they come into play. Client Validation by Default. By taking advantage of Unobtrusive JavaScript you don’t clatter your...
nraykov.wordpress.com
Ext JS Grid – rowclick and rowdblclick Issues | Some thoughts on web 2.0 development
https://nraykov.wordpress.com/2010/02/15/ext-js-grid-rowclick-and-rowdblclick-issues
Some thoughts on web 2.0 development. Ext JS Grid – rowclick and rowdblclick Issues. Ext JS Grid – rowclick and rowdblclick Issues. February 15, 2010. Last week I found an interesting issue regarding the. Events. Here is the scenario:. Note: I made my tests on Firefox, Google Chrome and Internet Explorer 8. Double click caused a single click event to be fired only on IE8. Here is a screenshot of the event firing sequence in Firefox when you double click on a grid’s row:. Event handler in time so that the.
nraykov.wordpress.com
How to Handle Forms Authentication Timeout During an AJAX Request | Some thoughts on web 2.0 development
https://nraykov.wordpress.com/2010/10/26/how-to-handle-forms-authentication-timeout-during-an-ajax-request
Some thoughts on web 2.0 development. How to Handle Forms Authentication Timeout During an AJAX Request. How to Handle Forms Authentication Timeout During an AJAX Request. October 26, 2010. The user logs in. After a period of inactivity the session times out. The user makes some action which triggers an AJAX request to the server which results in a response with a status code of 302 (Redirect) and the URL to the login page. What I needed was to pass the information to the XmlHttpRequest object that the u...
nraykov.wordpress.com
Using Ext JS Grid with ASP.NET MVC | Some thoughts on web 2.0 development
https://nraykov.wordpress.com/2009/11/29/using-ext-js-grid-with-asp-net-mvc
Some thoughts on web 2.0 development. Using Ext JS Grid with ASP.NET MVC. Using Ext JS Grid with ASP.NET MVC. November 29, 2009. ASPNET MVC is the new cool kid on the block of Microsoft platforms. I have been using it for a little over half an year and I can say that I like it much more than ASP.NET. Why is that? No more viewstate which adds an additional overhead on your page. Clean separation of concerns through the MVC pattern. New ASP.NET MVC Project. Scripts/jquery-1.3.2.js". Note: Please remember t...
nraykov.wordpress.com
Using IIS 7 Output Caching Capabilities | Some thoughts on web 2.0 development
https://nraykov.wordpress.com/2010/04/08/using-iis-7-output-caching-capabilities
Some thoughts on web 2.0 development. Using IIS 7 Output Caching Capabilities. Using IIS 7 Output Caching Capabilities. April 8, 2010. You could configure your server by editing the. File located at the following path –. Windir% system32 inetsrv config. File Regardless of which file you edit the syntax is the same. There are two ways for invalidating the cache – using a timeout period (. Or detecting a change in the resource file (. Below is a sample configuration that uses both ways for caching:. If you...