<?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>Sun May 26, 2013 7:14 am</pubDate>
  <lastBuildDate>Sun May 26, 2013 7:14 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: Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=547#547</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: Fri Mar 23, 2007 11:07 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      well this text simply puts the datagrid inside a div container to make it a fix size and let you scroll it.&lt;br /&gt;
&lt;br /&gt;
its used when you have a fully build up page and just want a part to be used by datagrid. not more and not less.&lt;br /&gt;
&lt;br /&gt;
as said make just a PHP file and bind Datagrid to it. Link a CSS file to the PHP file. the css should contain this:&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;
#anav &amp;#123;&lt;br /&gt;
width&amp;#58;98%;&lt;br /&gt;
height&amp;#58;65%;&lt;br /&gt;
overflow&amp;#58;auto; //SET EITHER TO AUTO OR SCROLL&lt;br /&gt;
text-align&amp;#58;center;&lt;br /&gt;
padding&amp;#58;12px;&lt;br /&gt;
&amp;#125;&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;
anav is just a name from me ... you can define what ever you want.&lt;br /&gt;
&lt;br /&gt;
in the PHP file where you bind the datagrid just write before this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;div id=&amp;quot;anav&amp;quot;&lt;/span&gt; &lt;br /&gt;
// Write this inside &amp;lt;&amp;gt; because this Forum threats it as Code insertion and doesnt lets me write it the right way&lt;br /&gt;
&lt;br /&gt;
Than here is your datagrid bind and after this make the end of the div&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&amp;lt;/div&amp;gt;&lt;/span&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=547#547</comments>
                                        <author>zewa666</author>
                                        <pubDate>Fri Mar 23, 2007 11:07 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=547#547</guid>
                                      </item>
                                      <item>
                                        <title>Re: Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=546#546</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=59'&gt;airputihdingin&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Fri Mar 23, 2007 9:37 am&lt;br /&gt;&lt;br /&gt;
                                      &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;zewa666 wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;i did this by doing following:&lt;br /&gt;
&lt;br /&gt;
inside my CSS file i have something like this:&lt;br /&gt;
&lt;br /&gt;
#anav {&lt;br /&gt;
	width:98%;&lt;br /&gt;
	height:65%;&lt;br /&gt;
	overflow:auto; //SET EITHER TO AUTO OR SCROLL&lt;br /&gt;
	text-align:center;&lt;br /&gt;
	padding:12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and where I call my grid:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
//DATAGRID IMPLEMENT SCRIPT//&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&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;
zewa, &lt;br /&gt;
&lt;br /&gt;
could u explain it as long as u can? i can't get it. (sorry..newbie &lt;img src=&quot;images/smiles/icon_cry.gif&quot; alt=&quot;Crying or Very sad&quot; border=&quot;0&quot; /&gt;) &lt;br /&gt;
&lt;br /&gt;
thx 2 u...</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=546#546</comments>
                                        <author>airputihdingin</author>
                                        <pubDate>Fri Mar 23, 2007 9:37 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=546#546</guid>
                                      </item>
                                      <item>
                                        <title>Re: Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=370#370</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 Mar 06, 2007 12:36 pm&lt;br /&gt;&lt;br /&gt;
                                      &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;slanza wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Excuse me!&lt;br /&gt;
you have reason!!!&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
you mean &amp;quot;You are right&amp;quot; &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;
---&lt;br /&gt;
&lt;br /&gt;
no need to excuse for something like this cause thats the purpose of this forum. Help and getting help.&lt;br /&gt;
&lt;br /&gt;
Greetings&lt;br /&gt;
Zewa</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=370#370</comments>
                                        <author>zewa666</author>
                                        <pubDate>Tue Mar 06, 2007 12:36 pm</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=370#370</guid>
                                      </item>
                                      <item>
                                        <title>Re: Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=369#369</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 Mar 06, 2007 12:33 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      yeah but that wouldn't be very useful because without paging you would need to load all entries at once to your datagrid...&lt;br /&gt;
&lt;br /&gt;
this means if you have a great table with lot of entries it could last up to an enormous time to present them all.&lt;br /&gt;
&lt;br /&gt;
@scroll&lt;br /&gt;
with the css you can do it too ... just show all and move up down with the browser native scrollbars ... but again ... its not very good to show all values at once&lt;br /&gt;
&lt;br /&gt;
Greetings&lt;br /&gt;
Zewa</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=369#369</comments>
                                        <author>zewa666</author>
                                        <pubDate>Tue Mar 06, 2007 12:33 pm</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=369#369</guid>
                                      </item>
                                      <item>
                                        <title>Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=368#368</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=27'&gt;slanza&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 06, 2007 12:30 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Excuse me!&lt;br /&gt;
you have reason!!!&lt;br /&gt;
&lt;br /&gt;
It's working. The only thing that I need to do is to show all records into datagrid and adjust the vertical scroll!!!.&lt;br /&gt;
&lt;br /&gt;
Thanks a lot for your support.&lt;br /&gt;
&lt;br /&gt;
Cheers,</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=368#368</comments>
                                        <author>slanza</author>
                                        <pubDate>Tue Mar 06, 2007 12:30 pm</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=368#368</guid>
                                      </item>
                                      <item>
                                        <title>Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=367#367</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=27'&gt;slanza&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 06, 2007 12:23 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      The Idea is to move records with a scrollbar. I mean, if I disable the footer or bottom paging, I need a scrollbar to move or go to the rest of records ...&lt;br /&gt;
&lt;br /&gt;
Cheers,</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=367#367</comments>
                                        <author>slanza</author>
                                        <pubDate>Tue Mar 06, 2007 12:23 pm</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=367#367</guid>
                                      </item>
                                      <item>
                                        <title>Re: Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=366#366</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 Mar 06, 2007 12:01 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      i did this by doing following:&lt;br /&gt;
&lt;br /&gt;
inside my CSS file i have something like this:&lt;br /&gt;
&lt;br /&gt;
#anav {&lt;br /&gt;
	width:98%;&lt;br /&gt;
	height:65%;&lt;br /&gt;
	overflow:auto; //SET EITHER TO AUTO OR SCROLL&lt;br /&gt;
	text-align:center;&lt;br /&gt;
	padding:12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and where I call my grid:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
//DATAGRID IMPLEMENT SCRIPT//&lt;br /&gt;
&amp;lt;/div&amp;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=366#366</comments>
                                        <author>zewa666</author>
                                        <pubDate>Tue Mar 06, 2007 12:01 pm</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=366#366</guid>
                                      </item>
                                      <item>
                                        <title>Scroll Bar</title>
                                        <link>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=362#362</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.phpbb88.com/phpbb/profile.php?mforum=phpbuilder&amp;mode=viewprofile&amp;u=27'&gt;slanza&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 06, 2007 11:07 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hi,&lt;br /&gt;
&lt;br /&gt;
I'm very happy with datagrid v.4&lt;br /&gt;
&lt;br /&gt;
Is possible to include a vertical/horizontal  scroll bar into datagrid margins?&lt;br /&gt;
&lt;br /&gt;
Cheers.</description>
                                        <comments>http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=362#362</comments>
                                        <author>slanza</author>
                                        <pubDate>Tue Mar 06, 2007 11:07 am</pubDate>
                                        <guid isPermaLink="true">http://www.phpbb88.com/phpbb/viewtopic.php?mforum=phpbuilder&amp;p=362#362</guid>
                                      </item></channel></rss>