Details
Description
Porting the existing JSF components to a Spring-MVC based was harder than it ought to have been.
Reverse engineering the markup is not great because it's not clear which fields are missing, given the current configuration. Reverse engineering the rendering code is not ideal because the Tag structure isn't mapped one-to-one to the same functional blocks as a JSF renderer. Comparing the actual output with the intended output repeatedly as a development process is very slow.
Here is the output from the JSF accordion Renderer. This is easier than the Tabset, but still complicated:
<div id="ACCID" class="mobi-accordion" data-opened="tab1">
<section id="tab1" class="open">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('ACCID', this, false);">
<div class="pointer">►</div>First drop down item
</div>
<input name='submitB' class='mobi-button mobi-button-important' type='submit' value='Button 1'/>
</section>
<section id="tab2" class="closed">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('ACCID', this, false);">
<div class="pointer">►</div>Second drop down item
</div>
<input name='submitC' class='mobi-button mobi-button-important' type='submit' value='Button 2'/>
</section>
<section id="tab3" class="closed">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('ACCID', this, false);">
<div class="pointer">►</div>Third drop down item
</div>
<input name='submitA' class='mobi-button mobi-button-important' type='submit' value='Button 3'/>
</section>
</div>
<span id="ACCID_script">
<script type="text/javascript"> ice.mobi.accordionController.initClient('ACCID',{ autoheight: true, maxheight: '0'});</script></span>
Reverse engineering the markup is not great because it's not clear which fields are missing, given the current configuration. Reverse engineering the rendering code is not ideal because the Tag structure isn't mapped one-to-one to the same functional blocks as a JSF renderer. Comparing the actual output with the intended output repeatedly as a development process is very slow.
Here is the output from the JSF accordion Renderer. This is easier than the Tabset, but still complicated:
<div id="ACCID" class="mobi-accordion" data-opened="tab1">
<section id="tab1" class="open">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('ACCID', this, false);">
<div class="pointer">►</div>First drop down item
</div>
<input name='submitB' class='mobi-button mobi-button-important' type='submit' value='Button 1'/>
</section>
<section id="tab2" class="closed">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('ACCID', this, false);">
<div class="pointer">►</div>Second drop down item
</div>
<input name='submitC' class='mobi-button mobi-button-important' type='submit' value='Button 2'/>
</section>
<section id="tab3" class="closed">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('ACCID', this, false);">
<div class="pointer">►</div>Third drop down item
</div>
<input name='submitA' class='mobi-button mobi-button-important' type='submit' value='Button 3'/>
</section>
</div>
<span id="ACCID_script">
<script type="text/javascript"> ice.mobi.accordionController.initClient('ACCID',{ autoheight: true, maxheight: '0'});</script></span>
Issue Links
- depends on
-
MOBI-307 JSP Resource Loading and Consolidation Strategy
- Resolved
Activity
Greg Dick
created issue -
Greg Dick
made changes -
Field | Original Value | New Value |
---|---|---|
Assignee | Steve Maryka [ steve.maryka ] | Greg Dick [ greg.dick ] |
Ted Goddard
made changes -
Fix Version/s | 1.2 Beta [ 10344 ] |
Philip Breau
made changes -
Philip Breau
made changes -
Status | Open [ 1 ] | Closed [ 6 ] |
Resolution | Fixed [ 1 ] |
The CSS holds both rendering paths to a standard. The markup generated must have the same structure, classes, and ids. Given that, why not document it? Given the markup below, see the notes section.
<div id="CLIENTID" class="mobi-accordion" data-opened="tab1">
{ autoheight: true, maxheight: '0'}<section id="tab1" class="open">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('CLIENTID', this, false);">
<div class="pointer">►</div> TITLE 1
</div>
<input name='submitB' class='mobi-button mobi-button-important' type='submit' value='Button 1'/>
</section>
<section id="tab2" class="closed">
<div class="handle" onclick="ice.mobi.accordionController.toggleClient('CLIENTID', this, false);">
<div class="pointer">►</div>TITLE2
</div>
<input name='submitC' class='mobi-button mobi-button-important' type='submit' value='Button 2'/>
</section>
...
</div>
<span id="CLIENTID_script">
<script type="text/javascript"> ice.mobi.accordionController.initClient('CLIENTID',
);</script></span>
Notes:
);
While the argument naming is better than an unnamed argument list, I think the parameters still need more description, particularly if they have anything to do with Ajax.
The above document took < 10 minutes to put together and would help catch inconsistencies and will help maintain the two branches of the components if we need to upgrade them in the future.
The Accordion tag uses a string id (to identify the sections) with an autoincrementing integer end, "tab1", "tab2" (1 based) while the Tabset indexes into the sibling pool with a numeric 0-based selection index. I don't know why they're different and perhaps there's a great reason for it, but it would make reverse engineering the javascript easier if I knew what the algorithm was.