Link to home
Start Free TrialLog in
Avatar of TheBull369
TheBull369

asked on

Embedded Editor Record Selector

Is there a way to have  buttons on an embedded editor that would act as a Next and Previous record??? I have a main doc form that has many other documents that go with it that the user needs to edit quickly. I tried this with an embedded view linked to an embedded editor and they say it takes to long to do the entry due to scrolling...

Is there a way to have an embedded form that would should subdoc1 allow them to change data, hit next, and it brings up the next one?

Thanks
Avatar of marilyng
marilyng

As long as the buttons are on the embedded view :))  Most direct and easiest, just enable the action bar to show the buttons. I think.

The problem with putting them on the form is that you can't get a handle on one while they're in the other, not without doing a lot of logic calls.
Avatar of TheBull369

ASKER

What if I got rid of the embedded view and just went with an embedded form that had the next and previous buttons?
It's the embedded form that you can't get a handle on :)  For that matter, you can display a form, with next prev buttons, as long as your view is sorted in some logical way, like read, unread, viewed today, etc.

Any button you put on a form you can program to do some logic :)
Qualify, as long as the button is on the embedded form, and you can navigate the view that you're in.  

Once you have the first document in the view, you just have to find it where it is in the view in order to step to the next one.  A touch complicated, but can be done.  A bit too long to be posted here, 'fraid.  But, maybe some of the other EE's will give it a go. !
Thinking about how to approach.. probably use private folders, when they open, their assignments get dumped into a folder, with the first document in the Embedded Editor.  after that, piece of cake, finish editing first doc, save and remove it from folder, go to next one. which would be the first doc...:)

set doc = folder.getFirstDocument
if not doc is nothing then..

hmmm... you can maybe use uiview if you were in framesets.. or

put a layout region on the embedded editor with a combofield that lists a summary of the document |docID, when they select it, you load it.   Refresh the combo when the form refreshes.. now you have handles.

can we do it with a popup of some sort (dialog box or something that lets them update values and go from record to record) or even a regular form versus a embedded editor??
Or you can allow the view columns to be editable.. then you can skip the whole thing.. :)  And you can have your next, prev, show selected, show unread...
I thought about the editable view, here is the problem and see if you have an idea.... The view contains a question #, score, question text, and answer text. There is no way that I have found to get the question text and answer text to display nicely in the view without them scrolling to the right like crazy...

Any ideas??

Also as another option, is there a way to have a embedded view side by side with an embedded editor instead of being on top of each other?
ASKER CERTIFIED SOLUTION
Avatar of marilyng
marilyng

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I have yet to get a frame to work right for me for some reason... also the document that has the embedded view and editor on it also has other information on it, where would i put that info?
On a page or a form in within the frame, or split the frame.
OK, if you LEFT frame, call it "NotesView"  has a listing of documents to be processed, and the center frame, call it "NotesDOC" is where you want to process documents, set the TargetFrame in NOTEVIEW to "NotesDoc", create an initial "Welcome/Instruction" page for the "NotesDOC" frame, so it has some instructions for your users.

Create a page for NotesView, and embed your view in it, or a copy of your view with either special actions, (prev, next), no column selection.  And the column list is maybe one or two columns.  You can set the single click destination frame to "NotesDoc"

Now, with the embedded view, you can also categorize it so that it first column shows the user name, and then categorize to the user name.  And you can use the column arrow, so that it closes left,or opens.   You can also include another page with an embedded navigation outline at the bottom of NotesDoc frame, and that can expand to show the links or close when not in use, and these can be the links to other framesets.

The page can have a title, instructions, with the view below it.  When you set the FRAME to that PAGE, there is a targe destination settings on the FRAME, so set that to NotesDoc.  Set the target destination for NotesDoc.

----------
So, the important thing is to make sure the frames have target destinations.  

-------
I sometimes use a top navigation frame, and those call new framesets.

Does this make any sense?