Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add explicit call to form submit() when changing a text entry so style_submenu_entry() can be used multiple times per page |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
2929d5fced0909b5183fa83f584e2560 |
| User & Date: | andygoth 2016-11-05 03:19:55.918 |
Context
|
2016-11-05
| ||
| 03:24 | Use <label> to connect setup checkboxes with their label text so either the checkbox or the label can be clicked on, also makes the checkbox highlight when the mouse hovers on the label ... (check-in: 9036122dcb user: andygoth tags: trunk) | |
| 03:19 | Add explicit call to form submit() when changing a text entry so style_submenu_entry() can be used multiple times per page ... (check-in: 2929d5fced user: andygoth tags: trunk) | |
| 03:17 | Add missing close angle bracket omitted by previous commit ... (check-in: 2dd295344e user: andygoth tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
556 557 558 559 560 561 562 |
cgi_printf(" size='%d'", -aSubmenuCtrl[i].iSize);
}else if( aSubmenuCtrl[i].iSize>0 ){
cgi_printf(
" size='%d' maxlength='%d'",
aSubmenuCtrl[i].iSize, aSubmenuCtrl[i].iSize
);
}
| | | 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
cgi_printf(" size='%d'", -aSubmenuCtrl[i].iSize);
}else if( aSubmenuCtrl[i].iSize>0 ){
cgi_printf(
" size='%d' maxlength='%d'",
aSubmenuCtrl[i].iSize, aSubmenuCtrl[i].iSize
);
}
@ onchange='gebi("f01").submit();'></span>
break;
case FF_MULTI: {
int j;
const char *zVal = P(zQPN);
if( aSubmenuCtrl[i].zLabel ){
cgi_printf(" %h", aSubmenuCtrl[i].zLabel);
}
|
| ︙ | ︙ |