<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — where can i find this get_trans_view_str function?]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=8047&amp;type=atom" />
	<updated>2019-03-17T23:49:39Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=8047</id>
		<entry>
			<title type="html"><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=34494#p34494" />
			<content type="html"><![CDATA[<p>where can i find this function argument scalar im trying looking for&nbsp; include folder ? and which file do i need to fix this issues so it would display link like po_search_completed.php?</p>]]></content>
			<author>
				<name><![CDATA[kalmav1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44462</uri>
			</author>
			<updated>2019-03-17T23:49:39Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=34494#p34494</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=34492#p34492" />
			<content type="html"><![CDATA[<p>These are for CSS Styling classes. If the function argument is a scalar, then it goes into an array and if an array it is passed on as is.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2019-03-17T16:11:44Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=34492#p34492</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=34490#p34490" />
			<content type="html"><![CDATA[<p>does that mean this function code here which handles all array inside an array then ? how would i do it show it won&#039;t show the error? which file do i need to look for find to edit or find this display error and fix it ?</p><div class="codebox"><pre><code>function alt_table_row_color(&amp;$k, $extra_class=null)
{
    $classes = $extra_class ? array($extra_class) : array();
    if ($k == 1)
    {
        array_push($classes, &#039;oddrow&#039;);
        $k = 0;
    }
    else
    {
        array_push($classes, &#039;evenrow&#039;);
        $k++;
    }
    echo &quot;&lt;tr class=&#039;&quot;.implode(&#039; &#039;, $classes).&quot;&#039;&gt;\n&quot;;
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[kalmav1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44462</uri>
			</author>
			<updated>2019-03-17T07:20:29Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=34490#p34490</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=34487#p34487" />
			<content type="html"><![CDATA[<p>There is no Array to String conversion here. The heading elements are in the array and are iterated through for display.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2019-03-17T03:30:17Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=34487#p34487</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=34477#p34477" />
			<content type="html"><![CDATA[<p>What does Array to string conversion ? </p><p>Just follow code from <em>purchasing/inquiry/po_search_completed.php</em>.<br />Made new search <em>po_items_completed.php</em> here is the code </p><p>This is where the error displaying.<br /></p><div class="codebox"><pre><code>$showdims = (($dim == 1 &amp;&amp; $_POST[&#039;dim1&#039;] == 0) ||
        ($dim == 2 &amp;&amp; $_POST[&#039;dim1&#039;] == 0 &amp;&amp; $_POST[&#039;dim2&#039;] == 0));
    if ($showdims)
        $th = array(_(&quot;#&quot;), _(&quot;Reference&quot;), _(&quot;Supplier&quot;), _(&quot;Currency&quot;));
    else
        $th =array(
        _(&quot;#&quot;) =&gt; array(&#039;fun&#039;=&gt;&#039;trans_view&#039;, &#039;ord&#039;=&gt;&#039;&#039;, &#039;align&#039;=&gt;&#039;right&#039;), 
        _(&quot;Reference&quot;), 
        _(&quot;Supplier&quot;) =&gt; array(&#039;ord&#039;=&gt;&#039;&#039;),
        _(&quot;Location&quot;),
        _(&quot;Supplier&#039;s Reference&quot;), 
        _(&quot;Order Date&quot;) =&gt; array(&#039;name&#039;=&gt;&#039;ord_date&#039;, &#039;type&#039;=&gt;&#039;date&#039;, &#039;ord&#039;=&gt;&#039;desc&#039;),
        _(&quot;Currency&quot;) =&gt; array(&#039;align&#039;=&gt;&#039;center&#039;), 
        _(&quot;Order Total&quot;) =&gt; &#039;amount&#039;,
        array(&#039;insert&#039;=&gt;true, &#039;fun&#039;=&gt;&#039;edit_link&#039;),
        array(&#039;insert&#039;=&gt;true, &#039;fun&#039;=&gt;&#039;prt_link&#039;),
);
    table_header($th);</code></pre></div>]]></content>
			<author>
				<name><![CDATA[kalmav1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44462</uri>
			</author>
			<updated>2019-03-15T04:51:28Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=34477#p34477</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=34473#p34473" />
			<content type="html"><![CDATA[<p><strong>includes/ui/ui_view.inc</strong></p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2019-03-15T02:39:20Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=34473#p34473</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[where can i find this get_trans_view_str function?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=34457#p34457" />
			<content type="html"><![CDATA[<p>i wanted to know where to find this function? get_trans_view_str</p>]]></content>
			<author>
				<name><![CDATA[kalmav1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=44462</uri>
			</author>
			<updated>2019-03-13T11:44:46Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=34457#p34457</id>
		</entry>
</feed>
