sagar....@flowian.com
unread,Dec 17, 2014, 12:07:34 AM12/17/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to suppor...@runmyprocess.com
Hi Team,
In my application there is one array widget. Which will have two columns.
I want to set a column in "Inactive" state, when it has some content in it.For that purpose I have use the following code.
if(id_arrayname.id_columnname[i].getText())
{
id_arrayname.id_columnname[i].setActive(false);
}
The problem is that when my array contain more than one rows and the respective column is empty for all the present rows, then the condition in "if" statement gives me different results for different rows.
I also tried
if(id_arrayname.id_columnname[i].getText()!=null)
{
id_arrayname.id_columnname[i].setActive(false);
}
Please suggest me any other solution..
Regards,
Sagar