User/TicketSystem/CreateTicket
Creating a ticket
If you think you have found a bug, please make sure you search the Ticket System first before creating a new bug entry.
However, if you think the bug does not relate to any of the reports found in the Ticket System, you can open up a new ticket by using this report template:
Bug report template
- What steps will reproduce the problem?
[A step-by-step description to easily reproduce this problem]
- What is the expected output?
[A detailed description of the software's behavior as expected]
- What do you see instead?
[A detailed description of the software's behavior as is]
- Can you provide a fix for this problem?
[Optional: If you have found a fix/workaround for this problem, post it here]
Bug report example
Here follows a fully configured example of a bug report as posted by Thorsten Suckow-Homberg? on the ExtJS-forums a while ago:
What steps will reproduce the problem?
- Create a Ext.Window with a gridpanel in it
- Move the window into the middle of the page
- Resize the grid's columns so that a horizontal scrollbar appears
- Scroll to the right
- Click on any cell in the right outermost column
What is the expected output? The grid should highlight the selected row, the position of the horizontal scrollbar should not change
What do you see instead? The clicked row gets selected, but the position of the horizontal scrollbar seems to reset it's position to 0.
Can you provide a fix for this problem? The xy-coordinates for the focus element get computed in the ensureVisible-method. The returned x-value does not take the x-coordinate of the gridpanel itself into account, which it apparently should.
i.e. in GridView.js replace Line 848
return cellEl ? Ext.fly(cellEl).getXY() : [c.scrollLeft, Ext.fly(rowEl).getY()];
with
return cellEl ? Ext.fly(cellEl).getXY() : [c.scrollLeft+this.el.getX(), Ext.fly(rowEl).getY()];
Wiki syntaxed template
Copy and paste this text into the textform when creating a new ticket.
'''What steps will reproduce the problem?''' '''What is the expected output?''' '''What do you see instead?''' '''Can you provide a fix for this problem?'''
