@@ 120-122 (lines=3) @@ | ||
117 | $sQuoteCharacter = "'"; |
|
118 | switch($this->sType) |
|
119 | { |
|
120 | case Jaxon::FORM_VALUES: |
|
121 | $sJsCode = "jaxon.getFormValues(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ")"; |
|
122 | break; |
|
123 | case Jaxon::INPUT_VALUE: |
|
124 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").value"; |
|
125 | break; |
|
@@ 123-125 (lines=3) @@ | ||
120 | case Jaxon::FORM_VALUES: |
|
121 | $sJsCode = "jaxon.getFormValues(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ")"; |
|
122 | break; |
|
123 | case Jaxon::INPUT_VALUE: |
|
124 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").value"; |
|
125 | break; |
|
126 | case Jaxon::CHECKED_VALUE: |
|
127 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").checked"; |
|
128 | break; |
|
@@ 126-128 (lines=3) @@ | ||
123 | case Jaxon::INPUT_VALUE: |
|
124 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").value"; |
|
125 | break; |
|
126 | case Jaxon::CHECKED_VALUE: |
|
127 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").checked"; |
|
128 | break; |
|
129 | case Jaxon::ELEMENT_INNERHTML: |
|
130 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").innerHTML"; |
|
131 | break; |
|
@@ 129-131 (lines=3) @@ | ||
126 | case Jaxon::CHECKED_VALUE: |
|
127 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").checked"; |
|
128 | break; |
|
129 | case Jaxon::ELEMENT_INNERHTML: |
|
130 | $sJsCode = "jaxon.$(" . $sQuoteCharacter . $this->xValue . $sQuoteCharacter . ").innerHTML"; |
|
131 | break; |
|
132 | case Jaxon::QUOTED_VALUE: |
|
133 | $sJsCode = $sQuoteCharacter . addslashes($this->xValue) . $sQuoteCharacter; |
|
134 | break; |