Browse by Tags

Tagged Content List
  • Wiki Page: Sync List with User Group Using jquery

    Requirement: To get all the user names from the SharePoint group "Deliverable Owners" and sync with a custom list called "Team Members" in a button click. Solution: This is done using jquery and SharePoint web services. <script type="text/javascript"...
  • Wiki Page: Trick : SharePoint Group by View with Order by on DateTime Field

    Hello Folks, This article is regarding creating “ SharePoint Group by View with Order by on DateTime Field ” for list or library in SharePoint 2010. First, lets us have a look on what is the need to create this kind of view? To create Group by view, SharePoint provides out of box settings in...
  • Wiki Page: Tips : SharePoint Group by View with Order by on DateTime Field

    Hello Folks, This article is regarding creating “ SharePoint Group by View with Order by on DateTime Field ” for list or library in SharePoint 2010. First, lets us have a look on what is the need to create this kind of view? To create Group by view, SharePoint provides out of box settings...
  • Wiki Page: Mudando de TextBox com a tecla ENTER (pt-BR)

    Desde o ano passado estou tentando escrever meu primeiro artigo. Acho de extrema importância à troca de conhecimento, pois assim saímos todos ganhando: quem lê e quem ensina. E uma oportunidade surgiu pra mim, a partir de uma dúvida no fórum comunidade C# (Csharp), feita pelo Cristiano Lins , o qual...
  • Wiki Page: How To: Show JQuery Dialog from ASP.NET code behind!!!

    I'm writing this article to How to show a JQuery Dialog from ASP.NET code behind. Here is the code snippet to show JQuery Dialog private void ShowAlert ( string message ) { /// Initialize the stringbuilder object to append JS script StringBuilder sb = new StringBuilder (); sb...
  • Wiki Page: How to export file by jQuery in ASP.NET Web Forms and ASP.NET MVC

    Table of Contents How To Requirements Specification Export Excel using jQuery in ASP.NET Web Forms Export Excel using jQuery in ASP.NET MVC References Conclusion How To In this article, I will explain how to export file by jQuery in both ASP.NET Web Forms and ASP.NET MVC. As you know, jQuery is...
  • Wiki Page: SharePoint 2013: Custom or Advance Paging Using Client Object Model +jQuery

    Note : This is article based on my original article at my blog Custom paging is the main approach when you work with large data in SharePoint or any normal web site in ASP.NET even lists is using Paging,but the problem with paging is data itself .So if you have a large data you can end up with a...
  • Wiki Page: SharePoint 2010: Integrating Jquery Carousel and ThickBox

    Hi all, In this article, I will show how to integrate SharePoint Image Library to JQuery jcarousel with Thickbox and make very nice UI. We can use it in many places like to show Employee Images in Home Page of HR Site and Clicking on Image will zoom the image with some animation effect, like ...
  • Wiki Page: SharePoint 2010: Bread Crumb for List/Library View Web Part in Wiki Page.

    Let’s have a look on why we need it first? In SharePoint, if we have large folder hierarchy in list/library (i.e. more than 10 sub levels) and we have added list view web part of that list/library in wiki page then it’s very difficult for end users to navigate through each folder level. Secondly, user...
  • Wiki Page: ASP.NET MVC Learning Roadmap

    For everybody who wants to learn ASP.NET MVC from the ground up, Young Yang posted a very useful learning roadmap in the ASP.NET forum . I shared this roadmap on this Wiki, so that everybody can profit from it. A special thanks for this great roadmap and his hard work goes to Young Yang . ...
  • Wiki Page: Dynamics CRM 2011 jquery Errors

    Couple common jquery errors when playing with jquery in dynamics CRM 2011; jquery Access Denied When running the jquery script on a machine outside the development domain you get: <CrmScriptErrorReport> <ReportVersion>1.0</ReportVersion> <ScriptErrorDetails>...
  • Wiki Page: Asp.Net MVC JQuery Grid Kullanımı (tr-TR)

    Bu yazımızda Asp.Net MVC ile JQuery Grid’ine nasıl veri yerleştirebileceğimizi inceleyelim. Projemize başlamadan önce aşağıdaki linkten JQuery Grid dosyalarımızı indirelim. Yeni bir Asp.Net MVC (Empty) Web Application oluşturalım ve bu uygulamada “Scripts” klasörünün altına jqgrid klasörü oluşturalım...
  • Wiki Page: Como crear un plugin con JQuery (es-ES)

    A modo de ejemplo, podemos ver a continuación un código fuente de un plugin muy sencillo: jQuery. fn .desaparece = function() { this.each(function(){ elem = $(this); elem.css("display", "none"); }); return this; }; Este plugin permitiría...
  • Wiki Page: Jquery AutoCompleteTextBox Server-Side Bind

    Jquery Allow to creating AutoComplete TextBox, but it’s binded in client side with JS Array I’will take an example of how to bound it in Server-Side Step 0 : Add the references the Jquery library in the code behind : string JQeryCss = "../../Scripts/jquery-ui.css" ; ...
  • Wiki Page: Programatically Upload Multiple File in SharePoint List (Part 1)

    Hello All, This is first part of the series of "Programatically Upload Multiple File in SharePoint List" This is two part series, At first part I will show you a method through which you can implement Multiple file attachment. In Part 1, I will show you Design Related concept...
  • Wiki Page: ASP.NET - Print Only the Content Inside of Div

    Requirement: Print only the content inside of Div in ASP.NET. Solution : For printing the page, there is a Javascript function: window.print(). However, it will print the whole page. If you need to print only the content of Div, then you have a few options available, but the maximum is either...
  • Wiki Page: ASP.NET - Imprimir solo el contenido que esta dentro de un Div (es-ES)

    La forma recomendada para imprimir el contenido de un div es con JQuery, mediante el siguiente ejemplo: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> < html > < head >...
  • Wiki Page: طريقة العرض اللانهائية للبيانات مثل جوجل أو بينج (ar-SA)

    السلام عليكم ورحمة الله وبركاته من أكثر الأشياء التي لا أحبها حقيقة هي مفهوم الصفحات (Paging)المتعددة لعرض البيانات ولذلك كنت أبحث منذ مدة عن طريقة عرض أفضل حتى وجدت محرك البحث بينج والذي قدم مفهوم جميل جدا خاصة عند إستعراض الصورة وهي أن عدد معين من الصور يتم عرضه في الصفحة ثم إذا قم بالنزول لأسفل...
  • Wiki Page: JQuery

    jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. Jquery provides following features: HTML elements manipulation...
  • Wiki Page: ASP.NET MVC Lernkarte (de-DE)

    Beachte : Ein paar Links sind leider nur auf Englisch verfügbar. Für jeden, der ASP.NET MVC von Anfang an lernen möchte hat Young Yang im ASP.NET Forum einen sehr hilfreichen Post geleistet. Ein besonderer Dank für diese großartige Roadmap und seine harte Arbeit geht...
Page 1 of 1 (20 items)
Can't find it? Write it!