1779 Posts in 582 Topics by 556 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 2403 Views |
-
Custom form template. Add js events.

5 April 2009 at 11:44am
Hi there, need advice.
How i may change layout for my custom form, for example i have function MessageForm inside my PageController class.
I need custom input tag with onfocus event inside. Like <input type="text" value="Name" onfocus="..." />Thanks.
-
Re: Custom form template. Add js events.

23 April 2009 at 10:27am
If you want to apply JavaScript methods to your forms, you could use a selector based JavaScript library like jQuery, rather than altering the form template.
For example, if you form looks like:
<form id="SearchForm" action="" method="get">
<input type="text" name="SearchForm_Query" value="" />
<input type="submit" vlaue="submit" />
</form>You can use require::javascript in your page template to add some js that might look like:
jQuery('#searchForm').submit(function(){
if(some expression) {
return true; // submit form;
} else {
return false; // don't submit form;
}
});If you don't want to include the library, you could do it the old fashioned way too:
var el = document.getElementById('searchForm');
// etc....If you actually want to change the template, you'll need to override the form field FieldHolder method. But you shouldn't need to do this. You should be able to control how it looks with CSS and what it does with included scripts. Inline JS is not template friendly
-
Re: Custom form template. Add js events.

23 April 2009 at 7:59pm
Thanks Hamish, Indeed, the only way I could figure was going the javascript route. Used prototype to do that.
| 2403 Views | ||
|
Page:
1
|
Go to Top |



