Displaying 3 results from an estimated 3 matches for "inputtext".
Did you mean:
input_text
2007 May 30
0
checking for "viability" of a GUI component
...ance of log window, if it exists, append output to it, otherwise,
create log window and insert to it. What I found out is that if I close
the X window of the GUI, the variable logwin still exists, confuse
arises to other components that are supposed to use the GUI.
create.log.win <- function(inputtext){
if(exists(is.null("logwin"))) {return} else {
logwin <<- tktoplevel()
logtext <<- tktext(logwin, bg="white")
tkwm.title(logwin," Log Window")
loglabel <- tklabel(logwin, text="Logging Analaysis Information"...
2007 Sep 25
1
unable to invoke Backing Bean method
...<SCRIPT type="text/javascript">
function validateUsername(username)
{
// Use Prototype''s Ajax.Request
new Ajax.Request("dynamic/loginBean/validateUsername.faces" );
}
</SCRIPT>
</head>
<body>
<f:view>
<h:form>
<h:inputText value="" onblur="validateUsername(this.value);"/>
</h:form>
</f:view>
</body>
</html>
My faces Config file:
<faces-config>
<managed-bean>
<managed-bean-name>loginBean</managed-bean-name>
<managed-bean-class>com.xyz.jsf....
2008 Mar 03
15
update_attributes not updating
...end
end
view:
<% form_for(:user, :url => user_url(@user), :html => { :method => :put
}) do |f| %>
<div class="optional">
<label for="city">First Name:</label>
<%= f.text_field :first_name, :class => ''inputText'' %>
</div>
<div class="optional">
<label for="city">Last Name:</label>
<%= f.text_field :last_name, :class => ''inputText'' %>
</div>
<p>
<%=submit_tag "Update&qu...