in my xpage I have an editbox for user to enter the name of the ODBC data source. Then onBlur I want to test whether the user entered value is valid/exist in the ODBC list. If there is error/exception, I want the error to be displayed in a 'Display Error' control I have in the xpage. I'm not sure where to start. Never done something like this before(even in LotusScript). Somebody enlighten me please?
|
|
I wouldn't do that in an onBlur event. Your user might want to change something else and you hit her with a slow operation. What you should do:
In any case: have a look at the extension library. It has the RDBMS connectivity build in (use it, don't reinvent the wheel). Copy the code from there. |
|||
|
|
Ok, apparently this is what I need. Maybe I should polish my question asking skill. Thanks to those who help though. Referring to here, I create 3 field/editbox: 'ODBC/DSN Name', 'username', 'password'. For 'ODBC/DSN Name', I put an xp:validateExpression and put the following code for the expression part:
Not sure whether I utilized the xp:validateExpression or xpages itself the right way but that's what customer request and seems to be working now. |
|||
|
|
|
Better to write in onchange event of the item that you need to validate. Because we usually do the partial refresh for that event right? So It prevents the item from entering the value. Simply try to write that in onchange event. But my opinion is that I used to write the validations for non- secure items in Jquery. Because that is very easy and gives nice outlook. |
|||||
|