How to rectify if an error like "Error loading USE or USELSX module" is shown when clicking on the view? This error is shown only when the view is clicked in its replica databases.
@Surendar - Link over a Image thing - Look at the following post - reuse the same code in XPages and put an XPage link instead of the text that I speak about and u are ready to go,
@Surendar - Regarding the file Upload validation thing,
on the onchange event of the file upload control put the a validation function that return true or false.
Validation function in the field should check if there is a file name entered into that field or not...
This is one way of doing it...
The simplest way on a XPage would be using the native validator,
Click the file upload control, -> go to Properties Pane -> Click validation tab (left margin) -> Select Required Field check box -> Provide required field error message
How to rectify if an error like "Error loading USE or USELSX module" is shown when clicking on the view? This error is shown only when the view is clicked in its replica databases.
ReplyDeleteHave posted an article trouble shooting ."Error loading USE or USELSX Module", Take a look at it and let me know how it goes
ReplyDeleteHi..
ReplyDeleteI need to know how to place a link in particular place of an image in XPAGE... pls reply as soon as possible....
How to validate(Make as a Required Field) a file upload control in XPAGE...
ReplyDelete@Surendar - Link over a Image thing - Look at the following post - reuse the same code in XPages and put an XPage link instead of the text that I speak about and u are ready to go,
ReplyDeletesizing background image to look look button
@Surendar - Regarding the file Upload validation thing,
ReplyDeleteon the onchange event of the file upload control put the a validation function that return true or false.
Validation function in the field should check if there is a file name entered into that field or not...
This is one way of doing it...
The simplest way on a XPage would be using the native validator,
Click the file upload control,
-> go to Properties Pane
-> Click validation tab (left margin)
-> Select Required Field check box
-> Provide required field error message
This should automatically do the job...
Let me know whether this helps... :)
Hi..
ReplyDeleteI have uploaded some files using file upload control in xpage.
I need to download those files and save it in desktop while clicking a button or link in that xpage.... pls try this and tell me.....
@Surendat-
ReplyDeleteput a computed field with the formula, @AttachmentNames()
write a loop that traverses through all these attachment names and extract them to desktop
embObj:NotesEmbeddedObject=document.getAttachment(attachmentNames[0]);
embObj.extractTo(desktop)
I have not stressed on syntax completely... so refer up with help docs....
So this logic to help u away...