Hi @eddy.daouk,
Is it possible to add table lookup feature to gridview?
For example, once IP field in the gridview is entered, other fields in the row is automatically populated based on the predefined values.
Thank you!
Marina
Hi @eddy.daouk,
Is it possible to add table lookup feature to gridview?
For example, once IP field in the gridview is entered, other fields in the row is automatically populated based on the predefined values.
Thank you!
Marina
Hello Marina,
You would need to add a code-behind method to be able to automatically populate other fields with a predefined value.
To trigger this code-behind, you will need to add the following custom attribute on your IP field:
And a method called onTextChanged
in your code-behind:
protected void onTextChanged (object sender, EventArgs e)
{
// Your code here
}
Regards,
Lynn