Field Group dependent fields

In fieldGroup,i have create two fields with lookuppickerfield but i select first value in lookuppickerfield based on that second lookuppickerfield should fetch automatically.

For example, If I select Employee name in first lookuppickerField based on employee name their mark should fetch automatically in second lookuppickerfield

Hi. You can use ValueChangeListener on first lookupPickerField ( by lookupPickerField_1.addValueChangeListener(yourValueChangeListener) ). Add to this listener logic that will fetch value in second lookupPickerField ( by lookupPickerField_2.setValue(someValue) ).

Look at these topics: