From ae99576286840c25f670a1e808da6b9986467306 Mon Sep 17 00:00:00 2001 From: akshaythakur8764 Date: Mon, 29 Jul 2024 14:02:35 +0530 Subject: textfield to textarea --- manage_proposal.inc | 2 +- proposal.inc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manage_proposal.inc b/manage_proposal.inc index b2b1976..4930095 100755 --- a/manage_proposal.inc +++ b/manage_proposal.inc @@ -871,7 +871,7 @@ function esim_research_migration_proposal_edit_form($form, &$form_state) '#default_value' => $proposal_data->project_title, ); $form['source_of_the_project'] = array( - '#type' => 'textfield', + '#type' => 'textarea', '#title' => t('Source of the Project'), '#default_value' => $proposal_data->source_of_the_project, // '#disabled' => TRUE, diff --git a/proposal.inc b/proposal.inc index 7dec2c7..ff87cbb 100755 --- a/proposal.inc +++ b/proposal.inc @@ -260,8 +260,8 @@ function esim_research_migration_proposal_form($form, &$form_state, $no_js_use = $form['source_of_the_project'] = array( '#type' => 'textfield', '#title' => t('Source of the Project'), - '#size' => 80, - '#maxlength' => 200, + // '#size' => 80, + // '#maxlength' => 200, '#required' => TRUE, '#attributes' => array( 'placeholder' => 'Insert the Journal name, title of proceedings (for conference papers) ' -- cgit From 2197486dd1dc4a38b036a80d1a105ffa46889e34 Mon Sep 17 00:00:00 2001 From: akshaythakur8764 Date: Mon, 29 Jul 2024 14:05:17 +0530 Subject: textfield to textarea --- proposal.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposal.inc b/proposal.inc index ff87cbb..c0dfdf1 100755 --- a/proposal.inc +++ b/proposal.inc @@ -258,7 +258,7 @@ function esim_research_migration_proposal_form($form, &$form_state, $no_js_use = ); $form['source_of_the_project'] = array( - '#type' => 'textfield', + '#type' => 'textarea', '#title' => t('Source of the Project'), // '#size' => 80, // '#maxlength' => 200, -- cgit