Click here to Skip to main content
15,885,546 members
Articles / Web Development / ASP.NET

Add and Set Datepicker, Drop Down Check Box And So On Into jQuery Repeater

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
26 Dec 2011CPOL3 min read 25.3K   8  
This article will explain in detail how to handle the controls in the templates of the Repeater control

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 handle the controls in the templates of the Repeater control. The directory is as follows:

Prepare

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

HTML Element

You can use HTML textbox or dropdown box in the template, and get or set the data.

Text Box

Text boxes can be used to edit the field, you can also use je-datepicker, je-autocomplete to create jQueryUI datepicker or autocomplete.

HTML
<input je-id="<field name>" type="text" value="<bound field>">

<je:Repeater ID="pictureRepeater" runat="server"
 ... >

 <EditItemTemplate>

  <input je-id="realname" type="text" value="#{realname}" />

 </EditItemTemplate>

</je:Repeater>  

By adding value="#{<bound field>}" to set the value of the text box, and use je-id="<field name>" to let repeater know which field the text box is when you update or create a new row.

Drop Down Box

The drop down box can be used to edit some enumeration values.

HTML
<select je-id="<field name>">
 <option value="<enum 1>"
 je-selected="<boolean value 1, can be a bound field or an expression>">
  <display value 1>
 </option>
 <option value="<enum 2>"
 je-selected="<boolean value 2, can be a bound field or an expression>">
  <display value 2>
 </option>
</select>

<je:Repeater ID="pictureRepeater" runat="server"
 ... >

 <EditItemTemplate>

  <select je-id="sex">
   <option value="true" je-selected="#{sex}">Male</option>
   <option value="false" je-selected="#{sex,!#}">Female</option>
  </select>

  <select je-id="major">
   <option value="jsj" je-selected="'#{major}' == 'jsj'">
    Computer
   </option>
   <option value="gsgl" je-selected="'#{major}' == 'gsgl'">
    Business
   </option>
   <option value="hy" je-selected="'#{major}' == 'hy'">
    Chinese
   </option>
  </select>

 </EditItemTemplate>

</je:Repeater>  

As with text boxes, drop down boxes use je-id to bind field name, in each option, you can use je-selected to set an expression that returns a boolean value, if the expression returns true, then this option is selected.

In the above code, because the sex field is a boolean type, you can use #{sex}. You can also use #{major,# == 'jsj'} to represent that if major field is 'jsj', then option will be selected. You can also use '#{major}' == 'jsj' to accomplish the same effect, but #{major} here needs to be enclosed in single quotation marks.

Multiline Text Box

Multiline text box and text box is what is said above is different, multiline text box uses the textarea element.

XML
<textarea je-id="<field name>"><bound field></textarea>

Check Box

Check boxes are often used to edit fields of the boolean type, such as:

HTML
<input je-id="<field name>" type="checkbox"
 je-checked="<boolean value, can be a bound field or an expression>" />

<je:Repeater ID="pictureRepeater" runat="server"
 ... >

 <EditItemTemplate>

  <input je-id="sex" type="checkbox" je-checked="#{sex}" />

 </EditItemTemplate>

</je:Repeater>  

In the code above, through je-checked bound sex fields of the boolean type. If sex is true, then the state of the check box is selected.

jQueryUI Widget

In the template using je-<jQueryUI widget name>="<attribute name n>=<attribute value n>;" to create a jQueryUI widget, where the property name and property value can refer to jqueryui.com.

jQueryUI Datepicker

Datepicker for binding and editing date type fields:

HTML
<input je-id="<field name>"
 je-datepicker="<attribute name n>=<attribute value n>;"
 type="text" value="<date>" />

<je:Repeater ID="pictureRepeater" runat="server"
 ... >

 <EditItemTemplate>

  <input je-id="birthday" je-datepicker="dateFormat='yy-mm-dd'"
   type="text"
   value="#{birthday,jQuery.panzer.formatDate(#,'yyyy-MM-dd')}" />

 </EditItemTemplate>

</je:Repeater>  

dateFormat property is used to set the format of date, you can set additional attributes, multiple attributes using ; to split. In the code above, we use the method jQuery.panzer.formatDate to format the output of the date.

jQueryUI Button

Buttons are typically used to execute the command:

HTML
<span je-button="<attribute name n>=<attribute value n>;"
 je-onclick="<action name>"></span>

<je:Repeater ID="pictureRepeater" runat="server"
 ... >

 <span je-button="label='Save';" je-onclick="update"></span>

</je:Repeater>  

You can use the span element as a button, or you can use the input element. Property label is the text of button, you can also use the content of the span element as the text of button. Common acts are beginedit, endedit, update, insert, remove, next, prev and goto.

jQueryUI Autocomplete

Autocomplete widget can automatically match the corresponding entry, when the user enters text:

HTML
<input je-id="<field name>"
 je-autocomplete="<attribute name n>=<attribute value n>;"
 value="<current value>" />

<je:Repeater ID="pictureRepeater" runat="server"
 ... >

 <input je-id="major" je-autocomplete="source=['jsj','gsgl','hy']"
  value="#{major}" />

</je:Repeater>  

Source property of autocomplete is an array of entries to match.

Comment

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 --