Hi Team,
We have one use case which we are not able to achieve using smartgwt.
Use Case :
1) We have one list grid with 5 dependeents feilds.
2) All 5 are combo box item in list grid
3) The value entered by user in feild 1 will be criteria for feild 2 and so on.
4) We had also implemented user filtering on the combo box item.
5) We had set the autofetch data to false , also addunknownvalues to false.
Issue : When user is tabbing through the feilds very fast then the edit value entered by user is not getting saved. And we are getting old value using the below line of code.
If i set setAddUnknownValues(true) then getEditValue of grid is giving the correct result no matter how fast I tab through. But the issue will occur if I set addunknownvalues to true.
String valueinItem1= grid.getEditValue(rowNum, "code");
We have one use case which we are not able to achieve using smartgwt.
Use Case :
1) We have one list grid with 5 dependeents feilds.
2) All 5 are combo box item in list grid
3) The value entered by user in feild 1 will be criteria for feild 2 and so on.
4) We had also implemented user filtering on the combo box item.
5) We had set the autofetch data to false , also addunknownvalues to false.
Issue : When user is tabbing through the feilds very fast then the edit value entered by user is not getting saved. And we are getting old value using the below line of code.
If i set setAddUnknownValues(true) then getEditValue of grid is giving the correct result no matter how fast I tab through. But the issue will occur if I set addunknownvalues to true.
String valueinItem1= grid.getEditValue(rowNum, "code");
Comment