<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=IslandBilly</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=IslandBilly"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/IslandBilly"/>
	<updated>2026-05-16T10:39:39Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Talk:Creating_a_modal_form_field&amp;diff=63539</id>
		<title>Talk:Creating a modal form field</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Talk:Creating_a_modal_form_field&amp;diff=63539"/>
		<updated>2011-12-09T16:22:58Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I think there is a small omission in the display of /administrator/components/com_library/views/books/tmpl/modal.php&lt;br /&gt;
&lt;br /&gt;
There is no opening php tag at the top, ie &#039;&amp;lt;?php&#039; &lt;br /&gt;
&lt;br /&gt;
One other thing: being a novice, I find that I am not clear on just what file the getInput method is supposed to be in. I&#039;m guessing from the context that it belongs in the same file as described above the method, ie admin/models/fields/modal/book.php, but it would be nice if you make that clear.&lt;br /&gt;
&lt;br /&gt;
Bill&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 09:05, 9 December 2011 (CST)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Talk:Creating_a_modal_form_field&amp;diff=63536</id>
		<title>Talk:Creating a modal form field</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Talk:Creating_a_modal_form_field&amp;diff=63536"/>
		<updated>2011-12-09T15:05:23Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: Created page with &amp;quot;I think there is a small omission in the display of /administrator/components/com_library/views/books/tmpl/modal.php  There is no opening php tag at the top, ie &amp;#039;&amp;lt;?php&amp;#039;   Bill  ~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I think there is a small omission in the display of /administrator/components/com_library/views/books/tmpl/modal.php&lt;br /&gt;
&lt;br /&gt;
There is no opening php tag at the top, ie &#039;&amp;lt;?php&#039; &lt;br /&gt;
&lt;br /&gt;
Bill&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 09:05, 9 December 2011 (CST)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J1.5_talk:Adding_sortable_columns_to_a_table_in_a_component&amp;diff=63279</id>
		<title>J1.5 talk:Adding sortable columns to a table in a component</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J1.5_talk:Adding_sortable_columns_to_a_table_in_a_component&amp;diff=63279"/>
		<updated>2011-11-28T21:21:21Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: /* order clause in getListQuery() causing SQL syntax error in Joomla v1.7 */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Article Altered==&lt;br /&gt;
Hopefully final fix after much head-banging upon desk&lt;br /&gt;
[[User:Zola|Zola]] 03:38, 7 March 2010 (UTC)&lt;br /&gt;
==Suggested Fix==&lt;br /&gt;
There is a problem with this example. As reported in many posts, the column headings only allow DESCending sorts. In addition, the grid.sort method called by JHTML doesn&#039;t display the sort direction arrow graphic. If you can live without having the final sort column and sort direction stored in the user state for future use, the problem can be fixed as follows. The whole process is shown rather than alterations.&lt;br /&gt;
&lt;br /&gt;
1. Add a new private variable to the MODEL. This is used to store the sort column field name and the sort direction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
var $_order  = array();&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Add the following lines to the MODEL __construct() function. Values for filter_order and filter_order_Dir are pulled from the $_REQUEST array (if present) or default values substituted. Replace &#039;fieldName&#039; with the name of the MySQL field name you want to sort by default. Change &#039;asc&#039; to &#039;desc&#039; if you want the default sort direction to be descending.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$this-&amp;gt;_order[] = JRequest::getVar(&#039;filter_order&#039;, &#039;fieldName&#039;, &#039;POST&#039;, &#039;cmd&#039;);&lt;br /&gt;
$this-&amp;gt;_order[] = JRequest::getVar(&#039;filter_order_Dir&#039;, &#039;asc&#039;, &#039;POST&#039;, &#039;word&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. Add a new private function to the MODEL to general the necessary MySQL query suffix. The MODEL will need to call this function and append the result to any existing MySQL query before execution.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
function _buildContentOrderBy() {&lt;br /&gt;
  return &#039; ORDER BY &#039;.$this-&amp;gt;_order[0].&#039; &#039;.$this-&amp;gt;_order[1].&#039; &#039;;&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If, for example, the query was stored in a private variable called $_query, the following would need to be added before the query is passed for execution.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$this-&amp;gt;_query .= $this-&amp;gt;_buildContentOrderBy();&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. Add a new public function to the MODEL so that the ordering field and sort direction can be accessed by the VIEW using the get() method.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
function getOrder() {&lt;br /&gt;
 return $this-&amp;gt;_order;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5. Add the following lines to the display() function in the VIEW (usually view.html.php). This uses the JView::get() method to &#039;get&#039; a copy of the array containing the ordering field and sort direction from the MODEL. The array is then assigned to the TEMPLATE.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$lists =&amp;amp; $this-&amp;gt;get( &#039;order&#039; );&lt;br /&gt;
$this-&amp;gt;assignRef( &#039;lists&#039;, $lists );&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
6. To conform with HTML add the following to the TEMPLATE (usually default.php). This ensures that the Javascript necessary is placed between the the &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; tags. Change &#039;formName&#039; to the name attribute of the &amp;lt;form&amp;gt; used later (see below)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
 JFactory::getDocument()-&amp;gt;addScriptDeclaration( &amp;quot;&lt;br /&gt;
 function tableOrdering( order, dir, task ) {&lt;br /&gt;
  var form = document.formName;&lt;br /&gt;
  form.filter_order.value = order;&lt;br /&gt;
  form.filter_order_Dir.value = dir;&lt;br /&gt;
  form.submit( task );&lt;br /&gt;
 }&amp;quot;&lt;br /&gt;
);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
7. Enclose the table to be sorted in &amp;lt;form&amp;gt;&amp;lt;/form&amp;gt; tags and add two hidden input fields as follows&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;form action=&amp;quot;index.php?option=com_componentName&amp;quot; method=&amp;quot;post&amp;quot; name=&amp;quot;formName&amp;quot;&amp;gt;&lt;br /&gt;
 ...&lt;br /&gt;
 table goes here&lt;br /&gt;
 ...&lt;br /&gt;
 &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;filter_order&amp;quot; value=&amp;quot;&amp;lt;?php echo $this-&amp;gt;lists[0]; ?&amp;gt;&amp;quot; /&amp;gt;&lt;br /&gt;
 &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;filter_order_Dir&amp;quot; value=&amp;quot;&amp;lt;?php echo $this-&amp;gt;lists[1]; ?&amp;gt;&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change the &amp;lt;form&amp;gt; action attribute as needed or use the JRoute method if you have the file router.php set up for SEF URLs.&lt;br /&gt;
&lt;br /&gt;
8. For each of the columns you want to sort, replace each of the column headings with the following (enclosed in &#039;th&#039; and &#039;/th&#039; tags). Change &#039;columnXName&#039; to the table columns heading text you want and change fieldXName to the corresponding MySQL field names. Leave non-sortable columns unchanged.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
 &amp;lt;th&amp;gt;&amp;lt;?php echo JHTML::_( &#039;grid.sort&#039;, &#039;column1Name&#039;, &#039;field1Name&#039;, $this-&amp;gt;lists[1], $this-&amp;gt;lists[0]); ?&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
 &amp;lt;th&amp;gt;&amp;lt;?php echo JHTML::_( &#039;grid.sort&#039;, &#039;column2Name&#039;, &#039;field2Name&#039;, $this-&amp;gt;lists[1], $this-&amp;gt;lists[0]); ?&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
 &amp;lt;th&amp;gt;&amp;lt;?php echo JText::_( &#039;unSortableColumnName&#039;); ?&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
 &amp;lt;th&amp;gt;&amp;lt;?php echo JHTML::_( &#039;grid.sort&#039;, &#039;column3Name&#039;, &#039;field3Name&#039;, $this-&amp;gt;lists[1], $this-&amp;gt;lists[0]); ?&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Preserving the state of &#039;filter_order&#039; and &#039;filter_order_Dir&#039; could be achieved by altering the MODEL __construct() function.&lt;br /&gt;
&lt;br /&gt;
[[User:Fletcher|Fletcher]] 17:11, 11 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== order clause in getListQuery() causing SQL syntax error in Joomla v1.7 ==&lt;br /&gt;
&lt;br /&gt;
I have been trying to add sortable columns using this page, and when I add the order clause, &lt;br /&gt;
&lt;br /&gt;
$query-&amp;gt;order($db-&amp;gt;getEscaped($this-&amp;gt;getState(&#039;filter_order&#039;, &#039;default_sort_column&#039;)) . &#039; &#039; . $db-&amp;gt;getEscaped($this-&amp;gt;getState(&#039;filter_order_Dir&#039;, &#039;ASC&#039;)));&lt;br /&gt;
 &lt;br /&gt;
I get a sql syntax error (MySQL 5.5). The display indicates that the order function has generated &amp;quot;ORDER BY&amp;quot; with nothing after it.&lt;br /&gt;
&lt;br /&gt;
Any ideas on what&#039;s going wrong? I have all the other pieces in place, according to this document.&lt;br /&gt;
&lt;br /&gt;
Bill&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 15:21, 28 November 2011 (CST)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_ACL&amp;diff=62914</id>
		<title>Archived talk:Developing a MVC Component/Adding ACL</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_ACL&amp;diff=62914"/>
		<updated>2011-11-12T17:35:38Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Somehow the ACL doesn&#039;t work on Edit permission for me. It shows both Save &amp;amp; New and Save as Copy buttons when it has no create rights. Gone through the code twice, but cannot see anything wrong with it... Anybody else have same problem? --[[User:A2Ggeir|A2Ggeir]] 10:19, 6 December 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
Did a little debug and it seems the values from function canDo() in Helper does not return the right values when it is in edit view. &lt;br /&gt;
&lt;br /&gt;
Result when in listview:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
   &#039;core.admin&#039; =&amp;gt; NULL,&lt;br /&gt;
   &#039;core.manage&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.create&#039; =&amp;gt; false,&lt;br /&gt;
   &#039;core.edit&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.delete&#039; =&amp;gt; false,&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result when in editview:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
   &#039;core.admin&#039; =&amp;gt; NULL,&lt;br /&gt;
   &#039;core.manage&#039; =&amp;gt; NULL,&lt;br /&gt;
   &#039;core.create&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.edit&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.delete&#039; =&amp;gt; true,&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:A2Ggeir|A2Ggeir]] 12:02, 7 December 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Delet dosn&#039;t work ==&lt;br /&gt;
&lt;br /&gt;
when you want to delete a message it goes wrong and the message appears:&lt;br /&gt;
&lt;br /&gt;
500 - Es ist ein Fehler aufgetreten&lt;br /&gt;
&lt;br /&gt;
Layout „default“ nicht gefunden&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
downt know why its not working... maybee some can check this out.&lt;br /&gt;
&lt;br /&gt;
Greetz&lt;br /&gt;
&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Ok, so I have carefully followed the tutorial to here. What I need to know now is HOW do I allow a user who only has edit.own rights to get to the admin edit for the component??&lt;br /&gt;
&lt;br /&gt;
I tried for a while to create an edit page on the front end, but no luck and no help. It occurred to me that perhaps if I could not bring the mountain to Mohammed, I could get Mohammed access to the mountain. But how to do it without making every user an administrator? Even a manager has too much other access.&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:14, 12 November 2011 (CST) Using v1.7&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_ACL&amp;diff=62913</id>
		<title>Archived talk:Developing a MVC Component/Adding ACL</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_ACL&amp;diff=62913"/>
		<updated>2011-11-12T17:33:18Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Somehow the ACL doesn&#039;t work on Edit permission for me. It shows both Save &amp;amp; New and Save as Copy buttons when it has no create rights. Gone through the code twice, but cannot see anything wrong with it... Anybody else have same problem? --[[User:A2Ggeir|A2Ggeir]] 10:19, 6 December 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
Did a little debug and it seems the values from function canDo() in Helper does not return the right values when it is in edit view. &lt;br /&gt;
&lt;br /&gt;
Result when in listview:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
   &#039;core.admin&#039; =&amp;gt; NULL,&lt;br /&gt;
   &#039;core.manage&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.create&#039; =&amp;gt; false,&lt;br /&gt;
   &#039;core.edit&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.delete&#039; =&amp;gt; false,&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result when in editview:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
   &#039;core.admin&#039; =&amp;gt; NULL,&lt;br /&gt;
   &#039;core.manage&#039; =&amp;gt; NULL,&lt;br /&gt;
   &#039;core.create&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.edit&#039; =&amp;gt; true,&lt;br /&gt;
   &#039;core.delete&#039; =&amp;gt; true,&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:A2Ggeir|A2Ggeir]] 12:02, 7 December 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Delet dosn&#039;t work ==&lt;br /&gt;
&lt;br /&gt;
when you want to delete a message it goes wrong and the message appears:&lt;br /&gt;
&lt;br /&gt;
500 - Es ist ein Fehler aufgetreten&lt;br /&gt;
&lt;br /&gt;
Layout „default“ nicht gefunden&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
downt know why its not working... maybee some can check this out.&lt;br /&gt;
&lt;br /&gt;
Greetz&lt;br /&gt;
&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Ok, so I have carefully followed the tutorial to here. What I need to know now is HOW do I allow a user who only has edit.own rights to get to the admin edit for the component??&lt;br /&gt;
&lt;br /&gt;
I tried for a while to create an edit page on the front end, but no luck and no help. It occurred to me that perhaps if I could not bring the mountain to Mohammed, I could get Mohammed access to the mountain. But how to do it without making every user an administrator? Even a manager has too much other access.&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:14, 12 November 2011 (CST)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62912</id>
		<title>Archived talk:Developing a MVC Component/Adding configuration</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62912"/>
		<updated>2011-11-12T17:29:58Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62911</id>
		<title>Archived talk:Developing a MVC Component/Adding configuration</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62911"/>
		<updated>2011-11-12T16:14:41Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ok, so I have carefully followed the tutorial to here. What I need to know now is HOW do I allow a user who only has edit.own rights to the component to get to the admin edit for the component??&lt;br /&gt;
&lt;br /&gt;
I tried for a while to create an edit page on the front end, but no luck and no help. It occurred to me that perhaps if I could not bring the mountain to Mohammed, I could get Mohammed access to the mountain. But how to do it without making every user an administrator? Even a manager has too much other access.&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:14, 12 November 2011 (CST)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62910</id>
		<title>Archived talk:Developing a MVC Component/Adding configuration</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62910"/>
		<updated>2011-11-12T16:14:05Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ok, so I have carefully followed the tutorial to here. What I need to know now is HOW do I allow a user who only has edit.own rights to the component to get to the admin edit for the component??&lt;br /&gt;
&lt;br /&gt;
I tried for a while to create an edit page on the front end, but no luck and no help. It occurred to me that perhaps if I could not bring the mountain to Mohammed, I could get Mohammed access to the mountain. But how to do it without making every user an administrator? Even a manager has too much other access.&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:14, 12 November 2011 (CST)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62909</id>
		<title>Archived talk:Developing a MVC Component/Adding configuration</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_configuration&amp;diff=62909"/>
		<updated>2011-11-12T16:12:52Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: How to give an edit.own level user access to the back end edits?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ok, so I have carefully followed the tutorial to here. What I need to know now is HOW do I allow a user who only has edit.own rights to the component to get to the admin edit for the component??&lt;br /&gt;
&lt;br /&gt;
I tried for a while to create an edit page on the front end, but no luck and no help. It occurred to me that perhaps if I could not bring the mountain to Mohammed, I could get Mohammed access to the mountain. But how to do it without making every user an administrator? Even a manager has too much other access.&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Talk:Extension_types_(technical_definitions)&amp;diff=62595</id>
		<title>Talk:Extension types (technical definitions)</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Talk:Extension_types_(technical_definitions)&amp;diff=62595"/>
		<updated>2011-10-14T17:46:29Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: How does the site (user) interface work?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The last thing this article says is &amp;quot;The user portion has no menu component, but is otherwise very similar to the admin portion.&amp;quot; Okay, so how exactly does the user side work? Where is that specified? I wish there were a link to that in the article because that is the part I need to undrstand. I have gone through the MVC tutorial on writing a component, but this does virtually nothing. I want to know how to present an edit form to the user similar to what&#039;s on the admin side.&lt;br /&gt;
Do I really have to write a module for this?&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62480</id>
		<title>Archived talk:Developing a MVC Component/Adding verifications</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62480"/>
		<updated>2011-10-03T13:21:44Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: /* verification seems to operate even when required=&amp;quot;false&amp;quot; is coded */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is the protected function _populateState() in the /admin/models/helloworld.php file? It doesn&#039;t appear in the original helloworld.php model file, and there isn&#039;t any indication as to the purpose of this function aside from the annotations within the function, which I don&#039;t fully understand.&lt;br /&gt;
&lt;br /&gt;
== Attention ==&lt;br /&gt;
&lt;br /&gt;
Section about admin/views/helloworld/tmpl/edit.php is not the same as in file present in archive.&lt;br /&gt;
&lt;br /&gt;
== verification seems to operate even when required=&amp;quot;false&amp;quot; is coded  ==&lt;br /&gt;
&lt;br /&gt;
I have expanded the helloworld component to have several other fields now, and set some of them to required=&amp;quot;false&amp;quot; in the /models/forms/app.xml file. I still get &amp;quot;invalid field&amp;quot; when I leave the input box empty. Any ideas?&lt;br /&gt;
&lt;br /&gt;
(later) I think I figured it out: the client-side script operates on every field it&#039;s assigned to, whereas the server-side &amp;lt;i&amp;gt;may&amp;lt;/i&amp;gt; operate only on a field that&#039;s required and not empty. Not sure about that last, but I am sure that the client-side script operates, so you may want to code the regex differently in admin/models/forms/&amp;lt;com-name&amp;gt;.js (the client side) vs admin/models/rules/&amp;lt;field&amp;gt;.php .&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:51, 30 September 2011 (CDT)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62479</id>
		<title>Archived talk:Developing a MVC Component/Adding verifications</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62479"/>
		<updated>2011-10-03T13:21:08Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: /* verification seems to operate even when required=&amp;quot;false&amp;quot; is coded */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is the protected function _populateState() in the /admin/models/helloworld.php file? It doesn&#039;t appear in the original helloworld.php model file, and there isn&#039;t any indication as to the purpose of this function aside from the annotations within the function, which I don&#039;t fully understand.&lt;br /&gt;
&lt;br /&gt;
== Attention ==&lt;br /&gt;
&lt;br /&gt;
Section about admin/views/helloworld/tmpl/edit.php is not the same as in file present in archive.&lt;br /&gt;
&lt;br /&gt;
== verification seems to operate even when required=&amp;quot;false&amp;quot; is coded  ==&lt;br /&gt;
&lt;br /&gt;
I have expanded the helloworld component to have several other fields now, and set some of them to required=&amp;quot;false&amp;quot; in the /models/forms/app.xml file. I still get &amp;quot;invalid field&amp;quot; when I leave the input box empty. Any ideas?&lt;br /&gt;
&lt;br /&gt;
(later) I think I figured it out: the client-side script operates on every field it&#039;s assigned to, whereas the server-side &amp;lt;i&amp;gt;may&amp;lt;/i&amp;gt; operate only on a field that&#039;s required and not empty. Not sure about that last, but I am sure that the client-side script operates, so you may want to code the regex differnently in admin/models/forms/&amp;lt;com-name&amp;gt;.js (the client side) vs admin/models/rules/&amp;lt;field&amp;gt;.php .&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:51, 30 September 2011 (CDT)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62478</id>
		<title>Archived talk:Developing a MVC Component/Adding verifications</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62478"/>
		<updated>2011-10-03T13:20:12Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: /* verification seems to operate even when required=&amp;quot;false&amp;quot; is coded */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is the protected function _populateState() in the /admin/models/helloworld.php file? It doesn&#039;t appear in the original helloworld.php model file, and there isn&#039;t any indication as to the purpose of this function aside from the annotations within the function, which I don&#039;t fully understand.&lt;br /&gt;
&lt;br /&gt;
== Attention ==&lt;br /&gt;
&lt;br /&gt;
Section about admin/views/helloworld/tmpl/edit.php is not the same as in file present in archive.&lt;br /&gt;
&lt;br /&gt;
== verification seems to operate even when required=&amp;quot;false&amp;quot; is coded  ==&lt;br /&gt;
&lt;br /&gt;
I have expanded the helloworld component to have several other fields now, and set some of them to required=&amp;quot;false&amp;quot; in the /models/forms/app.xml file. I still get &amp;quot;invalid field&amp;quot; when I leave the input box empty. Any ideas?&lt;br /&gt;
&lt;br /&gt;
(later) I think I figured it out: the client-side script operates on every field it&#039;s assigned to, whereas the server-side may operate only on a field that&#039;s required and not empty. Not sure about that last, but I am sure that the client-side script operates, so you may want to code the regex differnently in admin/models/forms/&amp;lt;com-name&amp;gt;.js (the client side) vs admin/models/rules/&amp;lt;field&amp;gt;.php .&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:51, 30 September 2011 (CDT)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62426</id>
		<title>Archived talk:Developing a MVC Component/Adding verifications</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62426"/>
		<updated>2011-09-30T15:52:17Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: /* verification seems to operate even when required=&amp;quot;false&amp;quot; is coded */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is the protected function _populateState() in the /admin/models/helloworld.php file? It doesn&#039;t appear in the original helloworld.php model file, and there isn&#039;t any indication as to the purpose of this function aside from the annotations within the function, which I don&#039;t fully understand.&lt;br /&gt;
&lt;br /&gt;
== Attention ==&lt;br /&gt;
&lt;br /&gt;
Section about admin/views/helloworld/tmpl/edit.php is not the same as in file present in archive.&lt;br /&gt;
&lt;br /&gt;
== verification seems to operate even when required=&amp;quot;false&amp;quot; is coded  ==&lt;br /&gt;
&lt;br /&gt;
I have expanded the helloworld component to have several other fields now, and set some of them to required=&amp;quot;false&amp;quot; in the /models/forms/app.xml file. I still get &amp;quot;invalid field&amp;quot; when I leave the input box empty. Any ideas?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:51, 30 September 2011 (CDT)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62425</id>
		<title>Archived talk:Developing a MVC Component/Adding verifications</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Archived_talk:Developing_a_MVC_Component/Adding_verifications&amp;diff=62425"/>
		<updated>2011-09-30T15:51:41Z</updated>

		<summary type="html">&lt;p&gt;IslandBilly: /* verification seems to operate even when required=&amp;quot;false&amp;quot; is coded  */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is the protected function _populateState() in the /admin/models/helloworld.php file? It doesn&#039;t appear in the original helloworld.php model file, and there isn&#039;t any indication as to the purpose of this function aside from the annotations within the function, which I don&#039;t fully understand.&lt;br /&gt;
&lt;br /&gt;
== Attention ==&lt;br /&gt;
&lt;br /&gt;
Section about admin/views/helloworld/tmpl/edit.php is not the same as in file present in archive.&lt;br /&gt;
&lt;br /&gt;
== verification seems to operate even when required=&amp;quot;false&amp;quot; is coded  ==&lt;br /&gt;
&lt;br /&gt;
I have expanded the helloworld component to have several other fields now, and set some of them to required=&amp;quot;false&amp;quot; in the /models/forms/app.xml file. I still get &amp;quot;invalid field&amp;quot; when I leave the input box empty. Any ideas?&lt;br /&gt;
[[User:IslandBilly|&amp;amp;quot;In theory, there&amp;amp;#39;s no difference between theory and practice; in practice, there is&amp;amp;quot;  --Yogi Berra]] 10:51, 30 September 2011 (CDT)&lt;/div&gt;</summary>
		<author><name>IslandBilly</name></author>
	</entry>
</feed>