Under the "Description" section, I am creating a small array of textboxes. I reproduced the code in "TicketMain.php":
But what I get in my file is:
All these text boxes occupy 100% of the width of that section. What I want is that there should be 2 or 3 textboxes in a row.
Any ideas how I can do this? Do I need to adjust some settings?
public $_tab_3_3 = array('start', 'end', 'duration', 'Stage 1', 'Stage 2', 'Stage 3');
public $Stage1StartDate;
public $Stage1EndDate;
public $Stage1Dur;
public $Stage2StartDate;
public $Stage2EndDate;
public $Stage2Dur;
public $Stage3StartDate;
public $Stage3EndDate;
public $Stage3Dur;
But what I get in my file is:
All these text boxes occupy 100% of the width of that section. What I want is that there should be 2 or 3 textboxes in a row.
Any ideas how I can do this? Do I need to adjust some settings?