Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

how to use coolphpsuit cpmponent in my template?

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General
View previous topic :: View next topic  
Author Message
polbadman
Smarty n00b


Joined: 04 Oct 2012
Posts: 2
Location: polnet.ir

PostPosted: Sat Oct 13, 2012 10:08 pm    Post subject: how to use coolphpsuit cpmponent in my template? Reply with quote

hi all
how to use coolphpsuit component in my template?
please with a sample

very tanX
Back to top
View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Sun Oct 14, 2012 12:58 am    Post subject: Reply with quote

Assign the objects as smarty varible

Example
Code:
   $KoolControlsFolder = "./KoolPHPSuite/KoolControls";//Relative path to "KoolPHPSuite/KoolControls" folder

   require $KoolControlsFolder."/KoolCalendar/koolcalendar.php";

   $datepicker = new KoolDatePicker("datetimepicker"); //Create calendar object
   $datepicker->scriptFolder = $KoolControlsFolder."/KoolCalendar";//Set scriptFolder
   $datepicker->styleFolder="default";

   //Change date and time format
   $datepicker->DateFormat = "M jS, Y";

   $datepicker->Init();

       $smarty->assign('datepicker',$datepicker);   <--------------------



Move the forms to a template and exchange the PHP code with Smarty tags

Example
Code:
<form id="form1" method="post">
   <div style="padding-top:20px;padding-bottom:40px;width:650px;">
      Pick a time:
      <br/>
      {$datepicker->Render()}   <-------------------------------------
      <div style="padding-top:10px;">
         <input type="submit" value="Submit" />
      </div>
      <div style="padding-top:10px;">
          {if $datepicker->Value!=null}  <-------------------------------
             <b>Choosed time:</b> {$datepicker->Value} <---------
          {/if}   <----------------------------------------------------------
      </div>
   </div>
</form>
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP