I'm revisiting a previous question, with a focus on the concept rather than my specific issue.
Currently exploring Saki's Form Examples, specifically, Displaying Form Submit Errors. Using Ext-JS 3.3.0 and aiming for similar functionality in my design, where tips appear when users move away from textboxes.
The Question: What are the essential files I need to include in my HTML to implement Quicktips like Saki's? Despite reviewing Saki's example thoroughly, it is challenging to identify key files in his HTML structure...
<link rel="stylesheet" type="text/css" href="./ext/resources/css/ext-all.css" />
<link id="theme" rel="stylesheet" type="text/css" href="./css/empty.css" />
<link rel="stylesheet" type="text/css" href="./css/icons.css" />
<link rel="stylesheet" type="text/css" href="./css/formerrors.css" />
<link rel="shortcut icon" href="./img/extjs.ico" />
<script type="text/javascript" src="./ext/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="./ext/ext-all-debug.js"></script>
<script type="text/javascript" src="./js/Ext.ux.form.XCheckbox.js"></script>
<script type="text/javascript" src="./formerrors.js"></script>
Unsure about empty.css, icons.css, extjs.ico, and Ext.us.form.XCheckbox.js origins.
Researching CSS Specificity, confident in managing style but seeking clarity on required JS elements for proper tooltip display.
Regarding msgTarget='side', does it require enclosure within a form or can be applied to xtype:'textarea'?