| | 33 | * '''GridView widget''' - |
| | 34 | * Seen in _s3ui_list , _s3ui_list_create views |
| | 35 | * Utilized in _s3ui_list.js |
| | 36 | * Produced by core.js - |
| | 37 | * once all required metadata is setup (see _s3ui_list.js), the following are called up in order - |
| | 38 | * widgets_getGridView() |
| | 39 | * widgets_gridView.create(dom element id) |
| | 40 | * widgets_gridView.show() |
| | 41 | |
| | 42 | * '''Rheader tabs''' - |
| | 43 | * Seen in _s3ui_update , _s3ui_display views as they are found to be primary to record's default view |
| | 44 | * Utilized in _s3ui_update and _s3ui_display views itself |
| | 45 | * Produced by core.js - |
| | 46 | * once base_url, update_url, uid_prefix, setupElementNames() is set, following are called to produce tabs |
| | 47 | * widgets_tabs_parseHtml() [ subject to change in version 2 ] |
| | 48 | * widgets_tabs_render() |
| | 49 | |
| | 50 | * '''widgets_formPanel''' - |
| | 51 | * Seen in grid view widget, views where there are no records in the list |
| | 52 | * widgets_formPanel parameters |
| | 53 | * action - either of 'create' or 'update' indication which type of form window to generate |
| | 54 | * window title - caption for form window |
| | 55 | * also has ability to generate buttons for actions - widgets_formPanel_createButton(action, caption, title, dom element id) |
| | 56 | * handles form submission, has very basic error indicaton as of now. |