This is a bug, see my Blogitem
Resolved:
The really problem is the target node of dijit widjet.
Now work weel!
Hi Andy,
Glad you liked the code.
It's actually pretty simple JavaScript which, if you look in the source code of the registration page you should be able to lift pretty easily. The IQJam template itself is a commercial product so we can't really share it with you that easily.
Matt
The community pronounces it YOU - NID most of the time; however if you talk to anyone from Lotus/Westford/Product Dev, they all pronounce it UN-ID, like the beginning of "under" and "id" like Id and Ego - so UN-id.
Just like ACL when referring to Notes/Domino is called "ACK-LE", but when talking about your knee it's "AY-CEE-EL"
And of course, my favorite:
the little triangle thingy in the upper right of a database "chicklet" (another "official" word!) - IOW the big db icon - on the workspace, where you change the replica, is called the "hinky minky". Mussie Shore named it this many, many, many years ago. In fact it is still referred to as Hinky Minky in quite a lot of the documentation. :)
I simulated something for you, please review solution.jpg, I will reply you accordingly.
You could use the request/sessionscope to set values you want to appear on your components. If the components value somehow is calculated in a partial refresh you should consider changing the design of your custom control. But to give you a reasonable answer I would like to know first what sort of control you are creating.. Why does it need this 'partial refresh'.?
What you could do is the use the functionality the JSF framework ( on which xpages is build ). The context global can be used to retrieve the request ( getRequest() if im not mistaken ) . In this request exists a method ( getParameterMap()) which contains all the parameters that where send with the request.
Simple iterating over this map will return all the submitted values. This map contains ALL fields that where available at the time of the submit. So the fields generated by the repeater are also available. The only thing you would need to know are:
Simple reading the values and do a document.replaceItemValue("field",value). Would do the trick here. It is not as easy as you would expect with notes development but it is an option you can consider
Hi Vikas,
The scope of row variable of a repeat control is within the repeat control only. You will not be able to access from outside it.
Alternatively you can set the variables to scoped variables (requestScope, viewScope or sessionScope) and get it outside your repeat Control.
Hope this helps.
Mervin
One of our web team helped me with this!
Where I call the help document, I needed to move the set cookie up before calling the dijit.Dialog. And then, after dialog.show(); I needed to add the following line:
setCookie('form', null, 0)
That did it!
You can make the field read only. Don't use the read only property as it will render the field as text, instead set the "readOnly" attribute to true. This link should help you:
http://www.bleedyellow.com/blogs/techKNOWlogy/entry/read_only_edit_box_in_xpage?lang=en