oracle adf - Get Input text value programatically using id in ADF mobile -


i input text value programatically using id in adf mobile adf.

below code use in adf value input text programatically.

facescontext facescontext = facescontext.getcurrentinstance(); uiviewroot root = facescontext.getviewroot(); richinputtext inputtext = (richinputtext)root.findcomponent("it1"); string val=inputtext.getvalue(); 

but can't value in adf mobile.

try access value page definition, instead of finding component root.

dciteratorbinding iterator = (dciteratorbinding)dcbindings.get("someiteratorid");  string attribute = (string) iterator.getcurrentrow().getattribute("someattributename"); 

Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -