0886: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
|Nothing to Input
|Nothing to Input
|Input attempted from an unpopulated [[2D Control]].
|Input attempted from an unpopulated [[2D Control]].
|You always have to populate a [[List]] or [[Grid]] with at least one row before you can type into to it. You should pre-initialize (usually with [[null]] values) all rows that you want to make available for operator entry.  
|* You always have to populate a [[List]] or [[Grid]] with at least one row before you can type into to it. You should pre-initialize (usually with [[null]] values) all rows that you want to make available for operator entry.  
If you're using a [[Grid]] with a [[Filter]] text box than to avoid this error (when typing so much the grid is empty and then tabbing to it) you need to add "[[error] [[ignore]]" to the end of your [[rinput]] [[statement]].
* If you're using a [[Grid]] with a [[Filter]] text box than to avoid this error (when typing so much the grid is empty and then tabbing to it) you need to add "[[error]] [[ignore]]" to the end of your [[rinput]] [[statement]].
}}
}}
[[Category:Error Codes]]
[[Category:Error Codes]]

Revision as of 14:20, 14 April 2014

Summary:

Nothing to Input

Cause:

Input attempted from an unpopulated 2D Control.

Remedy:

  • You always have to populate a List or Grid with at least one row before you can type into to it. You should pre-initialize (usually with null values) all rows that you want to make available for operator entry.
  • If you're using a Grid with a Filter text box than to avoid this error (when typing so much the grid is empty and then tabbing to it) you need to add "error ignore" to the end of your rinput statement.