<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>PHP Builder</title>
  <link>http://www.phpbb88.com/phpbb/index.php?mforum=phpbuilder</link>
  <description>free solutions for web developers</description>
  <language>english</language>
  <copyright>(c) Copyright 2013 by PHP Builder</copyright>
  <managingEditor>leumas.a@gmail.com</managingEditor>
  <webMaster>leumas.a@gmail.com</webMaster>
  <pubDate>Mon May 20, 2013 3:26 am</pubDate>
  <lastBuildDate>Mon May 20, 2013 3:26 am</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>PHP Builder</title>
    <url></url>
    <link>http://www.phpbb88.com/phpbb/</link>
    <description>free solutions for web developers</description>
  </image>

                                      <item>
                                        <title>Re: Prioritys Rows</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2775#2775</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=297'&gt;Laufwerk&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Jun 09, 2008 9:42 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      hi zewa666&lt;br /&gt;
It's is possible to insert this function in a new column?&lt;br /&gt;
on the left of delete header_name = priority (For example) and the content [image up][imagedown] for every cell ?&lt;br /&gt;
&lt;br /&gt;
I believe that like this people see much clearer</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2775#2775</comments>
                                        <author>Laufwerk</author>
                                        <pubDate>Mon Jun 09, 2008 9:42 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2775#2775</guid>
                                      </item>
                                      <item>
                                        <title>Re: Prioritys Rows</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2770#2770</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=34'&gt;zewa666&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Jun 05, 2008 3:27 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      ok the first part for preparing the things in Datagrid is done ...&lt;br /&gt;
&lt;br /&gt;
as you can see down in the example at the End i prepared a function called resort, which will be used to reindex the field colindex of each row.&lt;br /&gt;
Right now Im still searching for the proper algorithm, which I had ones, but due to my chaos I cant find right now &lt;img src=&quot;images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
here is a code_template which you could use for it:&lt;br /&gt;
&lt;a href=&quot;http://zewa.ze.funpic.de/datagrid/code_template.rar&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://zewa.ze.funpic.de/datagrid/code_template.rar&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I made a database called test, with a table called test and some testing values ...&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `test` &amp;#40;&lt;br /&gt;
&amp;nbsp; `id` int&amp;#40;11&amp;#41; NOT NULL auto_increment,&lt;br /&gt;
&amp;nbsp; `colindex` int&amp;#40;11&amp;#41; NOT NULL,&lt;br /&gt;
&amp;nbsp; `test` varchar&amp;#40;200&amp;#41; NOT NULL,&lt;br /&gt;
&amp;nbsp; PRIMARY KEY&amp;nbsp; &amp;#40;`id`&amp;#41;,&lt;br /&gt;
&amp;nbsp; KEY `colindex` &amp;#40;`colindex`&amp;#41;&lt;br /&gt;
&amp;#41; ENGINE=MyISAM&amp;nbsp; DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Daten für Tabelle `test`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
INSERT INTO `test` &amp;#40;`id`, `colindex`, `test`&amp;#41; VALUES&lt;br /&gt;
&amp;#40;1, 1, '1998'&amp;#41;,&lt;br /&gt;
&amp;#40;2, 2, 'datagrid'&amp;#41;,&lt;br /&gt;
&amp;#40;3, 3, 'zewa'&amp;#41;,&lt;br /&gt;
&amp;#40;4, 4, 'leumas'&amp;#41;,&lt;br /&gt;
&amp;#40;5, 5, 'php'&amp;#41;;&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Greetings&lt;br /&gt;
Zewa</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2770#2770</comments>
                                        <author>zewa666</author>
                                        <pubDate>Thu Jun 05, 2008 3:27 pm</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2770#2770</guid>
                                      </item>
                                      <item>
                                        <title>Re: Prioritys Rows</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2763#2763</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=297'&gt;Laufwerk&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Jun 04, 2008 12:26 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      perfect!!! Thanks!!!</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2763#2763</comments>
                                        <author>Laufwerk</author>
                                        <pubDate>Wed Jun 04, 2008 12:26 pm</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2763#2763</guid>
                                      </item>
                                      <item>
                                        <title>Re: Prioritys Rows</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2762#2762</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=34'&gt;zewa666&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Jun 04, 2008 11:56 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      ill try doing such a small example this weekend...&lt;br /&gt;
&lt;br /&gt;
Greetings&lt;br /&gt;
Zewa</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2762#2762</comments>
                                        <author>zewa666</author>
                                        <pubDate>Wed Jun 04, 2008 11:56 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2762#2762</guid>
                                      </item>
                                      <item>
                                        <title>Re: Prioritys Rows</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2761#2761</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=297'&gt;Laufwerk&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Jun 04, 2008 7:35 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I don't know to do it, sorry.&lt;br /&gt;
&lt;br /&gt;
Please help me!!!</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2761#2761</comments>
                                        <author>Laufwerk</author>
                                        <pubDate>Wed Jun 04, 2008 7:35 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2761#2761</guid>
                                      </item>
                                      <item>
                                        <title>Re: Prioritys Rows</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2759#2759</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=34'&gt;zewa666&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Jun 03, 2008 11:23 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      you could do this by your own very easily...&lt;br /&gt;
&lt;br /&gt;
Create a table with a column lets say called &amp;quot;Priority&amp;quot; which is unsigned int and indexed.&lt;br /&gt;
&lt;br /&gt;
now you could build for Datagrid either 2 multifunctions which are beneath the grid and to be accessed for the choosen rows, or you insert virtual fields, which will do a function UP or DOWN.&lt;br /&gt;
&lt;br /&gt;
Catching the move event you know what to do ... reindex the Priority column should be all.&lt;br /&gt;
&lt;br /&gt;
Greetings&lt;br /&gt;
Zewa</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2759#2759</comments>
                                        <author>zewa666</author>
                                        <pubDate>Tue Jun 03, 2008 11:23 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2759#2759</guid>
                                      </item>
                                      <item>
                                        <title>Prioritys Rows</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2755#2755</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=297'&gt;Laufwerk&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Jun 02, 2008 10:16 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hi !!&lt;br /&gt;
&lt;br /&gt;
I think that this is a very well option, that the user can dragging a row to up or down, and automacatly the grid save this position in a colum proirity&lt;br /&gt;
&lt;br /&gt;
Bye!!!</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2755#2755</comments>
                                        <author>Laufwerk</author>
                                        <pubDate>Mon Jun 02, 2008 10:16 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=2755#2755</guid>
                                      </item></channel></rss>