I mean that the code for a table grid comes out like:
| Code: |
<form style="margin: 0px;" name="form" method="GET" action="/index.php?option=com_grid">
...
<table cellspacing="0" cellpadding="4" border="0" style="margin: auto;">
...
|
A text box in the configuration that allowed me to add a style to the form and/or table so the code came out like this:
| Code: |
<form class="myFormClass" style="margin: 0px;" name="form" method="GET" action="/index.php?option=com_grid">
...
<table class="myGridClass" cellspacing="0" cellpadding="4" border="0" style="margin: auto;">
...
|
would making styling and javascript manipulation of the table easier.
I am also suggesting that the form name:
| Code: |
<form style="margin: 0px;" name="form"
|
is bad form (pardon the pun). It should be distinct like:
| Code: |
<form style="margin: 0px;" name="formGrid15"
|
or if you don't need it, omit it. name="form" could easily lead to multiple forms with the same name.