wwWebPage::AddBindingError

Adds a binding error to the page's BindingErrors collection.

This method is called internally for any unbinding errors that occur, but you can also manually add errors to this collection. For example, say you're doing a post check for an 'empty' value on a list selection where the first item is *** Please select one. In this case you might do:

*** Unbind all controls on the form
this.UnbindData()

IF this.lstStates.selectedValue = "***"
	THIS.AddBindingError("You have to select a state","lstStates")
ENDIF

IF this.BindingErrors.Count > 0
	this.ErrorDisplay.Text = this.BindingErrors.ToString()
	RETURN
ENDIF

o.AddBindingError(lcMessage,lvControl)

Parameters

lcMessage
The error message to display.

lvControl
An instance of a wwWebControl or a control's ID. Passing the control is more efficient - passing a string requires finding the control by parsing the control tree.

This value is optional. If you specify the value the Error display can highlight the control when clicked and set focus there from the error summary display.


See also:

Class wwWebPage

© West Wind Technologies, 1996-2024 • Updated: 05/30/08
Comment or report problem with topic