I have a code in JSP page which is given below
- <dmfx:docbaseobject name="obj"/>
- <table>
<tr>
<td>
<nobr><b><dmfx:docbaseattributelabel object="obj" attribute="urn"/></b></nobr>
</td>
<td>
<dmfx:docbaseattributevalue object="obj" readonly="false" attribute="urn" size="25"/>
</td>
</tr> - <table>
In java class ,On some event , i change the id of docbase object but it doesnt refresh the values of docbase object .
objId = args.get("objectId");
docbaseObj = (DocbaseObject)getControl("obj", DocbaseObject.class);
docbaseObj.setObjectId(objId);
for the first time , it sets the object with proper id but when i try to refresh this page with another ID dynamically, it doesnt refresh the values and it shows the older values of the object.
Is it bug in docbaseobject?
Any help would be greatly appreciated.
Thanks
Kulveer Singh