Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

EIP - How do I know which column in the browse looses focus? 1

Status
Not open for further replies.

emaduddeen

Programmer
Mar 22, 2007
184
US
Hi Everyone,

Can you tell me how to find out which column looses focus in a browse with eip? I plan to put code in the TakeAccepted embed of the Browse.

Thanks.
Emad
 
Hi Emad,

As far as I know, the browse Accept cycle is not in use when EIP is on. In other words, the Browse TakeAccepted will not fire. You need to look at the EIPManager's TakeAction(unsigned Action) method. The edit action equates are :

EditAction:None 0
EditAction:Forward 1 ! Next field
EditAction:Backward 2
EditAction:Complete 3 ! OK
EditAction:Cancel 4
EditAction:Next 5 ! Next record
EditAction:previous 6
EditAction:Ignore 7

Regards

 
Hi ShankarJ,

TakeAction works for me.

Can you tell me how to identify which column in the eip browse was accepted? The browse is called TransactionDetailsList and I would like to referece the TranDet:SellPrice column in the eip browse.

Thanks.
Emad
 
Hi.

I found what I was looking for.

I found it in Local Objects -> ABC Objects -> EIP Field Manager for Browse Using ?TransactionDetailsList for field TranDet:SellPrice -> TakeAccepted embed.

Wow, that is sure burried deep into the embeds.

Truly,
Emad
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top