• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

[TIP] Help Desk Ticket Manager

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • [TIP] Help Desk Ticket Manager

    In V3.0, when using the Ticket Manager, you could enter a Submitted By field. I was a little shocked that it was gone in V3.1. So I was hoping it would come back in V3.2. It did not. So I added this field back in by putting the following in to /view/TicketWindowForm.js after the combo setup.
    Code:
    , {
    			xtype: 'textfield',
    			id: 'submitby',
    			name: 'SUBMITBY',
    			fieldLabel: 'Submit By',
    			width: 450,
    			selectOnFocus: true,
                colspan: 2
            }
    And added the following to EXHDMAIN
    Code:
    post_SubmitBy =vvIn_char('SUBMITBY');
    I hope this will help someone else who wants this ability back in the help desk.

  • #2
    Thank you for sharing!!

    Comment

    Working...
    X