modal-popup

Doing post back on an ajax toolkit modal popup extender

依然范特西╮ 提交于 2019-12-14 03:17:55
问题 I use an Ajax Toolkit modal pop-up extender to pop-up a form for collecting information from the user. I intend to send the data collected from the user to the code behind for saving into the database on click of the submit button on that form. I found out, however, that the submit button is not posting back to the saver at all. I do not want to use any client side coding or a web service. Is it in any way possible to do post back on a modal pop? 回答1: There are two solutions of your problem:

rich:popupPanel always show scrollbars

醉酒当歌 提交于 2019-12-08 04:24:13
问题 My JSF form contains a popup panel. The code is here: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:a4j="http://richfaces.org/a4j" xmlns:rich="http://richfaces.org/rich" xmlns:f="http://java.sun.com/jsf/core"> <h:head> <title>Partner Manager</title> <link href="stylesheet/reset.css" rel=

Restrict tabindex focusing to a section of the page

大憨熊 提交于 2019-11-29 03:00:55
Situation: I have a webpage which opens modal windows (light boxes) which contain forms where the user can input data. Users generally navigate using the keyboard, tabbing from one field to the next. Problem: When a modal window opens, only the window is active, the rest of the page is not accessible using the mouse, but elements can be reached by tabbing out of the modal window. Question: How can I restrict movement by using the tab button to only the elements within the form window? The only thing I can think of is using Javascript to set tabindex=-1 on all form elements (and other focusable

Restrict tabindex focusing to a section of the page

 ̄綄美尐妖づ 提交于 2019-11-27 17:16:36
问题 Situation: I have a webpage which opens modal windows (light boxes) which contain forms where the user can input data. Users generally navigate using the keyboard, tabbing from one field to the next. Problem: When a modal window opens, only the window is active, the rest of the page is not accessible using the mouse, but elements can be reached by tabbing out of the modal window. Question: How can I restrict movement by using the tab button to only the elements within the form window? The