<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — where can i find this get_trans_view_str function?]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=8047</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=8047&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in where can i find this get_trans_view_str function?.]]></description>
		<lastBuildDate>Sun, 17 Mar 2019 23:49:39 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=34494#p34494</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (kalmav1)]]></author>
			<pubDate>Sun, 17 Mar 2019 23:49:39 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=34494#p34494</guid>
		</item>
		<item>
			<title><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=34492#p34492</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sun, 17 Mar 2019 16:11:44 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=34492#p34492</guid>
		</item>
		<item>
			<title><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=34490#p34490</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (kalmav1)]]></author>
			<pubDate>Sun, 17 Mar 2019 07:20:29 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=34490#p34490</guid>
		</item>
		<item>
			<title><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=34487#p34487</link>
			<description><![CDATA[<p>There is no Array to String conversion here. The heading elements are in the array and are iterated through for display.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sun, 17 Mar 2019 03:30:17 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=34487#p34487</guid>
		</item>
		<item>
			<title><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=34477#p34477</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (kalmav1)]]></author>
			<pubDate>Fri, 15 Mar 2019 04:51:28 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=34477#p34477</guid>
		</item>
		<item>
			<title><![CDATA[Re: where can i find this get_trans_view_str function?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=34473#p34473</link>
			<description><![CDATA[<p><strong>includes/ui/ui_view.inc</strong></p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 15 Mar 2019 02:39:20 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=34473#p34473</guid>
		</item>
		<item>
			<title><![CDATA[where can i find this get_trans_view_str function?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=34457#p34457</link>
			<description><![CDATA[<p>i wanted to know where to find this function? get_trans_view_str</p>]]></description>
			<author><![CDATA[null@example.com (kalmav1)]]></author>
			<pubDate>Wed, 13 Mar 2019 11:44:46 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=34457#p34457</guid>
		</item>
	</channel>
</rss>
