|
Ok, I am stumped, I have tried to find the “file” and I just can’t.
Here is what I get when I try to look at the properties for the text field in firebug:
<div class="entry-edit">
<form id="edit_form" enctype="multipart/form-data" method="post" action="http://www.bisontactical.com/index.php/admin/system_convert_gui/save/key/994e98d51e82c39c8bfa7c6cf260f292/">
<div>
<span class="field-row">
<div id="convert_profile_tabs_wizard_content" style="display: none;">
<div id="convert_profile_tabs_upload_content" style="display:none;">
<div id="convert_profile_tabs_run_content" style="display:none;">
<div id="convert_profile_tabs_view_content" style="">
<div class="entry-edit">
<div class="entry-edit-head">
<div id="_viewbase_fieldset" class="fieldset fieldset-wide">
<div class="hor-scroll">
<table class="form-list" cellspacing="0">
<tbody>
<tr>
<td class="label">
<td class="value">
<textarea id="_viewactions_xml" class=” textarea” cols="15" rows="2" style="height:30em" title="Actions XML” name="actions_xml_view"><action type="dataflow/convert_parser_xml_excel" method="parse"> <var name="single_sheet"><![CDATA[]]></var> <var name="fieldnames"></var> <var name="store"><![CDATA[0]]></var> <var name="number_of_records">1</var> <var name="decimal_separator"><![CDATA[.]]></var> <var name="adapter">catalog/convert_adapter_product</var> <var name="method">parse</var> </action></textarea>
</td>
Now, I modified the file above to not be readonly (in the php) however it only lets me edit the field but doesn’t save the data anywhere. Is it possible that this is a database field being displayed, and that somehow I don’t have the ability to write to that database field/table anymore?
|