Hi,<br>I use z3c.formjs in a project and would like to customize the selector id used into jsaction.handler for form field.<br>Since the z3c.formui templates add &quot;-row&quot; suffix to the widget id, I need also to add the &quot;-row&quot; suffix to the selector id in the event
 handler.<br>
<br>Here is the code in jsaction.py:<br><br><font color="#888888">      # Step 1: Get the handler.<br>
      handlers = widget.form.jshandlers.getHandlers(widget.field)<br>
      # Step 2: Create a selector.<br>
      selector_cls = queryUtility(interfaces.IWidgetSelector)<br>
      if selector_cls is None:<br>
          selector = WidgetSelector(widget)<br>
      else:<br>
          selector = selector_cls(widget)<br>
</font><br>If it is a good idea, how could I apply it to svn repository ?<br>
<br>Thx,<br><font color="#888888">Simon <br><br><br></font>