Skip to Content
0
Former Member
Aug 10, 2005 at 09:34 AM

BSP:findAndReplace

46 Views

Hello,

With the following code it is possible to call the different events that are available

in HTML for a HTMLB inputField.

      <bsp:findAndReplace find    = "<input"
                          replace = "<input onKeyUp …. >
        <htmlb:inputField id        = "t2"
                          value     = " "
                          alignment = "left"></htmlb:inputField>
      </bsp:findAndReplace>

Is there a possibility to use this findAndReplace with a tableview ?

I tried it like this but it won’t work :

        <bsp:findAndReplace find    = "<input"
                            replace = "<input onKeyUp …. >

          <htmlb:tableViewColumn columnName          = "MENGE"
                                 width               = "50"
                                 edit                = "true"
                                 wrapping            = "true"
                                 horizontalAlignment = "center"
                                 title               = "Aantal"
                                 type                = "input"></htmlb:tableViewColumn>

        </bsp:findAndReplace>

I just want to call a JS function whenever the user puts an entry in the field from the tableview.

Any ideas, suggestions, …

Thanks in advance.

Dirk.