Your requirement is to have input elements with IDs are are known in 
advance?<br><br>The issue it not so much with the form elements, I think, but with the callbacks. When you register a callback, it is assigned a unique key (using #nextId as you mention). That key needs to be the id of the form element in order for it to be triggered. I don&#39;t think you can easily specify custom callback keys.<br>

<br>You could obviously implement that somehow with the low-level pieces but I&#39;m not sure exactly how off the top of my head.<br><br>My other thought (not knowing JMeter at all)... What about specifying your inputs with IDs and no callbacks. Then have a hidden element with a callback that looks for POST or query fields by name in the request (&quot;self requestContext request&quot;) and does the needed processing.<br>

<br>Julian<br><br><div class="gmail_quote">On Tue, May 4, 2010 at 6:35 PM, Paul DeBruicker <span dir="ltr">&lt;<a href="mailto:pdebruic@gmail.com">pdebruic@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Hi -<br>
<br>
I&#39;d like to use JMeter to submit some forms to Seaside 3.0, but it relies on the ability to POST a form to a server once you&#39;ve specified the name/value pairs to submit.  When you add a callback to a form element in Seaside it overrides any value you&#39;ve set as the name of the form element and replaces it with a whatever id results from a call to #nextId.  If you reuse the form on different pages throughout your site the id&#39;s for that form could change based on what else is rendered on the page.<br>


<br>
Is there a way to prevent seaside&#39;s normal behavior of replacing element names and let the forms keep the names you give them?  What are the drawbacks to doing that? Are there other things to try?  Maybe us the form element id: rather than nextId?<br>


<br>
<br>
Right now, it seems like changing Seaside might be easier for me than changing the JMeter sampler every time I move stuff around on the site.  I can ensure that the form names are unique on a page.<br>
<br>
Thanks<br>
<br>
Paul<br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</blockquote></div><br>