Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
Add Client Side Item in WebDropDown Template
posted

Hi,

I am using a WebDropDown with a custom table template.

I just want to add a new template item at cliet side using javascript or jQuery.

Please suggest.

My aspx page code given below :

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

<ig:WebDropDown ID="ddlOrder" runat="server" Width="100%" DisplayMode

="DropDown"

 

 

DataSourceID="SqlDataSourceOrder" DropDownContainerHeight="300px" EnableClosingDropDownOnBlur

="true"

 

 

EnableClosingDropDownOnSelect="true" EnableLoadOnDemand="true" EnablePersistingCustomValues

="true"

 

 

PageSize="200" EnableAutoFiltering="Server" AutoFilterQueryType="Contains" EnableAutoCompleteFirstMatch

="false"

 

 

CurrentValue="" TextField="Search" ValueField

="OrderID">

 

 

<HeaderTemplate

>

 

 

<table width="100%" cellpadding="0" cellspacing

="1"

 

 

border="0"

>

 

 

<tr class

='clsHeaderDate'>

 

 

<td width

="20%">

 

 

<asp:Label ID="LBL_194_1" ToolTip="0" runat="server">Article Code</asp:Label></td

>

 

 

<td width

="20%">

 

 

<asp:Label ID="LBL_195_1" ToolTip="0" runat="server">Article Name</asp:Label></td

>

 

 

<td width

="20%">

 

 

<asp:Label ID="LBL_197_1" ToolTip="0" runat="server">Buyer Ref.</asp:Label></td

>

 

 

<td width

="20%">

 

 

<asp:Label ID="LBL_413_1" ToolTip="0" runat="server">Purchase Order No.</asp:Label></td

>

 

 

<td width

="20%">

 

 

<asp:Label ID="LBL_238_1" ToolTip="0" runat="server">Delivery Date</asp:Label></td>

 

 

</tr

>

 

 

</table

>

 

 

</HeaderTemplate

>

 

 

<ItemTemplate

>

 

 

<table style="width: 100%; border-collapse:collapse" cellspacing="1" cellpadding="0" border

="0">

 

 

<tr class="clsRowDataLabel" height

="25">

 

 

<td width

="20%">

<%

 

#DataBinder.Eval(Container.DataItem, "ArticleCode"

)%>

 

 

</td

>

 

 

<td width

="20%">

<%

 

#DataBinder.Eval(Container.DataItem, "ArticleName"

)%>

 

 

</td

>

 

 

<td width

="20%">

<%

 

#DataBinder.Eval(Container.DataItem, "BuyerReference"

)%>

 

 

</td

>

 

 

<td width

="20%">

<%

 

#DataBinder.Eval(Container.DataItem, "PONum"

)%>

 

 

</td

>

 

 

<td width

="20%">

<%

 

#DataBinder.Eval(Container.DataItem, "DeliveryDate"

)%>

 

 

</td>

 

 

<td style

="display: none">

<%

 

#DataBinder.Eval(Container.DataItem, "Search"

)%>

 

 

</td>

 

 

<td style

="display: none">

<%

 

#DataBinder.Eval(Container.DataItem, "OrderID"

)%>

 

 

</td>

 

 

</tr

>

 

 

</table

>

 

 

</ItemTemplate

>

 

 

<ClientEvents DropDownClosed

="dllSelectionChange"/>

 

 

</ig:WebDropDown

>