Click here to Skip to main content
15,886,199 members
Articles / Web Development / HTML

Using jQuery Repeater to Expand Page Preview Like Google

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
1 Dec 2011CPOL2 min read 14.8K   7  
In order to see more quickly, we may display only part of the data in Repeater, while the more detailed information is achieved by child view.

The original post can be found here.

Introduction/Catalog

Due to limited time, synchronization cannot be guaranteed in more than one blog article. At the following address, you can view up-to-date content, hope you understand:

Download sample: JQueryElementDemo-en.zip, the directory is /repeater/Default.aspx.

This article will explain in detail how to use the child views in the Repeater control, the directory is as follows:

Prepare

Please view the prepare section at 30 Minutes Grasp ASP.NET jQuery Repeater.

Define Child View Sample

The Repeater displayed within Repeater is known as child view, child view is a copy of the child view sample, and according to the condition to display different data. Definition of child view sample has no special, such as:

XML
<je:Repeater ID="<child view ID>" runat="server"
 FilterField="<child view search field>">

</je:Repeater>

<je:Repeater ID="pictureRepeater" runat="server"
 FilterField="['url']"
 FillAsync-Url="webservice.asmx"
 FillAsync-MethodName="GetGooglePicture">
 <ItemTemplate>
  <div>
   <span class="url">#{url}</span>
   <br />
   <br />
   #{picture}
  </div>
 </ItemTemplate>
</je:Repeater>

In most cases, you need to define property FilterField for a child view sample, that is, the condition used to search the data of child view, in the code above, we add a url as a condition, then the method in server-side can be written:

C#
[WebMethod]
public SortedDictionary<string, object> GetGooglePicture ( string url )
{
 // Return JSON
}

Because we return only one row here, you don't have to add the pageindex and pagesize parameters.

About how to return JSON, please refer to Return JSON in Different .NET Version. All code for this example is written using the .NET 4.0.

Switch Child View

If you need to switch, turn off, turn on child views in the Repeater control, you can use shiftview, collapseview, expandview three methods, such as:

XML
// je-<javascript event name>="shiftview,'<child view ID>'[,<search field value n>]"

<div id="list">
 <je:Repeater ID="googleRepeater" runat="server"
  Selector="'#list'" PageSize="2" IsVariable="true"
  FillAsync-Url="webservice.asmx"
  FillAsync-MethodName="SearchGoogle">
  <ItemTemplate>

   <div class="picture">
    <div
     je-button="label='More';"
     je-onclick="shiftview,'pictureRepeater','#{url}'">
    </div>
    <div je-id="pictureRepeater" style="display: none;">
    </div>
   </div>
  
  </ItemTemplate>

 </je:Repeater>
</div>

Take shiftview for example, the first parameter is the ID of a child view, the following parameters are the conditions used to search the data for child views, in the sample, field URL is a condition, corresponding to the URL in the property FilterField of the child view sample. If there are more conditions, you can continue to add, but the order of conditions must be the same with FilterField property of child view sample.

The expandview method and shiftview are similar, expandview will open child view, and shiftview will switch the open status of child view.

The collapseview method will close the child views, it does not need to pass condition.

By default, when a child view is opened for the first time, it will automatically call the fill method to get data, then open operation will no longer refresh the data.

Define a Container

In addition to defining the child views, you also need to define a container of child view in the row template:

XML
// je-id="<child view ID>"
<ItemTemplate>
 <div class="picture">
  <div je-id="pictureRepeater" style="display: none;">
  </div>
 </div>
</ItemTemplate>

Set je-id to the ID of a child view, the element can be bound as the container of the child view, the child view will appear in the target container.

We make the container hidden in the beginning by style="display: none;", because the child view is off by default.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --