Sorry Guys,

I realize this might be question 1.000.000 concerning embedded code in HTML markup, but I really can't figure it out.

I am using a databound repeater component with some click-sensitive panel inside.

<ItemTemplate>
        <asp:Panel ID="PanelContent" runat="server">
            <asp:Panel ID="PanelMenuTitle" runat="server" ondblclick="EditMenu(<%# Eval("ID") %>)">

As you can see I want to pass the ID of the current data item to a javascript function called EditMenu().

However, this code breaks due to "The server tag is not well formed.". Now, I tried everything I can think of: Using <%= instead of <%#, Bind() instead of Eval(), ' instead of ". Nothing worked.

Obviously I have no idea how to make this work. Would be great if anybody could tell me the/a solution.

Thanks!

Alright, I got it working. Not the original approach, but in the end it's what I wanted:

if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
        {
            Panel pnlCtrl = (Panel)e.Item.FindControl("PanelMenuTitle");
            if (pnlCtrl != null)
            {
                myMenu menu = (e.Item.DataItem as myMenu);
                pnlCtrl.Attributes["ondblclick"] = String.Format("EditMenu('{0}')", menu.ID);
            }
        }
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Use single quotes around the ondblclick function. That should fix it. See below.

ondblclick='EditMenu(<%# Eval("ID") %>)'

My second suggestion would be to use another control, like a ListView or a DataList, so that you can assign data keys to hold the ID. Then you can assign the ondblclick event in the ItemDataBound event like this.

protected void ListView1_ItemDataBound(object sender, ListViewItemEventArgs e)
{
    if (e.Item.ItemType == ListViewItemType.DataItem)
    {
        Panel pnlCtrl = (Panel)e.Item.FindControl("Panel1");
        if (pnlCtrl != null)
        {
            pnlCtrl.Attributes["ondblclick"] = String.Format("EditMenu({0})", ListView1.DataKeys[((ListViewDataItem)e.Item).DisplayIndex]["ID"]);
        }
    }
}
link|improve this answer
Nope, this does not work. Tried this before. The rendered markup looks like this: ... onclick="EditMenu(&lt;%# Eval(&quot;ID&quot;) %>)"> ... – Ingmar Sep 7 '11 at 13:54
This comment you just posted wraps the JavaScript function in double-quotes. Are you sure you tried with single quotes around the JavaScript function? – James Johnson Sep 7 '11 at 13:56
Yeah, I am very sure since I used copy&paste in order to copy your suggestion right in my code. – Ingmar Sep 7 '11 at 13:57
Yes, thank you James. That is working just fine. I adapted your code to my needs (with repeater instead of ListView) and now it works like a charm. Thanks so much again for your help! – Ingmar Sep 7 '11 at 19:29
Good stuff. Glad you got it working. How did you get around the data keys with the repeater? The repeater doesn's support data keys, does it?? – James Johnson Sep 7 '11 at 19:38
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.