cancel
Showing results for 
Search instead for 
Did you mean: 

Suggestion for Define Condition Ranges of Value Help Dialog

former_member275924
Active Participant
0 Kudos
1,024

Hi experts,

I want to add the suggestion row and column in define condition range field .Like as below image.

I can add suggestion item in filter of value help and input field . But I can't in define condition .

Here is my logic to show the field in define condition .

this._oValueHelpDialog.setRangeKeyFields([{
  label: "Partner",
  key : "partner",
  typeInstance: new typeString({}, {
        maxLength: 7}),
}]);

Although I think , I should add the input class within setRangeKeyFields method . It doesn't work.

How should I do ?

this._oValueHelpDialog.setRangeKeyFields([{
  label: "Partner",
  key : "partner",
Input: new sap.m.Input("partner", {
	type: sap.m.InputType.Text,
	placeholder: 'Enter Partner ...',
	showSuggestion: true,
	suggestionItems: {
	path: "/Z_CDS_PARTNER",
	template: new sap.ui.core.Item({
	text: "{partner}"
	})},
	showValueHelp: true}),
  typeInstance: new typeString({}, {
        maxLength: 7}),
}]);

Best Regards,

Phyo

Accepted Solutions (0)

Answers (1)

Answers (1)

diego_a
Participant
0 Kudos

Hi experts,

Hi, i have the same problem i need to put Value Help Dialog over define condition,

did you solve the problem?

regards,