Browse

vijayalakshmi

New Member
Dear All,

when i give the data in browse widget, it will be save in corresponding table i.e on leave of that particular row. how we will do this one. i should give the data in browse widget itself. Thanks in advance.

Regards,
Viji
 

parul

Member
Hi,

If I understand correctly you want an updatable browse??

If you are using appbuilder then
go to browse properties - > fields -> check enable.

-Parul.
 

vijayalakshmi

New Member
Parul,
Thanks for your reply. i will not use the app.builder, in progress,
how we will solve this problem. Thanks you.


Regards,
Vijayalakshmi
 

parul

Member
I hope this is what you are after.

-Parul.

DEFINE QUERY q1 FOR order.
DEFINE BROWSE b1 QUERY q1 DISPLAY cust-num instructions
enable instructions
WITH 17 DOWN TITLE "Customer Browse".
DEFINE FRAME f1
b1
WITH SIDE-LABELS AT ROW 2 COLUMN 2.
OPEN QUERY q1 FOR EACH order.
ENABLE b1 WITH FRAME f1.
WAIT-FOR WINDOW-CLOSE OF CURRENT-WINDOW.
 
Top