Since Terry decided to take this private, I am forwarding the responses to
this list to keep the history. Especially since after attempting to help
Terry with both the answer to his problem and some basic advice for getting
help from community mailing lists... his end response was "Up yours".

Good luck Terry, you'll need it at this point.


-Karl Tiedt

---------- Forwarded message ----------
From: <te...@terryarnett.com>
Date: Sun, Mar 19, 2017 at 3:08 PM
Subject: RE: Private message regarding: [polymer-dev] Problems with
displaying results in dom-module
To: Karl Tiedt <kti...@gmail.com>


up yours !!!!

-------- Original Message --------
Subject: RE: Private message regarding: [polymer-dev] Problems with
displaying results in dom-module
From: Karl Tiedt <kti...@gmail.com>
Date: Sun, March 19, 2017 4:56 pm
To: te...@terryarnett.com

And I'm telling you how you get help in these communities... If you are
gong to ignore my help, then by all means, don't bother following up when I
answer your questions, but you should leave all emails on the mailing list
so others can learn too.

Good luck

On Mar 19, 2017 2:24 PM, <te...@terryarnett.com> wrote:

> I'm asking for help, not criticism.
>
> -------- Original Message --------
> Subject: Re: Private message regarding: [polymer-dev] Problems with
> displaying results in dom-module
> From: Karl Tiedt <kti...@gmail.com>
> Date: Sun, March 19, 2017 3:26 pm
> To: te...@terryarnett.com
>
> You did not have "repeat" though you had "repat", either way, "repeat" is
> not listed as a valid property or method of dom-repeat... Also responding
> off list defeats the purpose of having a mailing list for support, it
> removes relevant information from the thread....
>
> -Karl Tiedt
>
> On Sun, Mar 19, 2017 at 11:17 AM, <te...@terryarnett.com> wrote:
>
>> I have used both combinations, "repeat=" and "items="
>>
>>
>>
>> On Saturday, March 18, 2017 at 6:15:00 PM UTC-5, Karl Tiedt wrote:
>>>
>>> repat="{{item in items_array}}"
>>>
>>> This doesn't have meaning to polymer...toy probably want this to be
>>> items=....
>>>
>>> On Mar 18, 2017 15:28, <te...@terryarnett.com> wrote:
>>>
>>>> My first post asking for help, so please be patient with a newbie ..
>>>>
>>>> Why doesn't this work?  The console.log shows that data is being
>>>> returned from the database.
>>>> Nothing show up in the <paper-item dropdown.
>>>>
>>>>
>>>>
>>>> code..........................
>>>>
>>>> <dropdown-Payee></dropdown-Payee>
>>>>
>>>>
>>>>                             <dom-module id="dropdown-Payee">
>>>>
>>>>                                 <template>
>>>>
>>>>                                     <paper-dropdown-menu label="Pay to
>>>> the Order Of :" style="width:375px;margin-top:-5px">
>>>>
>>>>                                         <paper-listbox
>>>> class="dropdown-content" id="ddlPayTo">
>>>>
>>>>                                             <template is="dom-repeat"
>>>> repat="{{item in items_array}}">
>>>>                                                 <paper-item
>>>> name="{{item.pName}}">{{item.pName}}</paper-item>
>>>>                                             </template>
>>>>
>>>>                                         </paper-listbox>
>>>>
>>>>                                     </paper-dropdown-menu>
>>>>
>>>>                                 </template>
>>>>
>>>>
>>>>                                 <script>
>>>>                                     Polymer({
>>>>                                         is: "dropdown-Payee",
>>>>                                         ready: function () {
>>>>                                             $.ajax({
>>>>                                                 type: "POST",
>>>>                                                 url:
>>>> "PayeeService.asmx/GetPayees",
>>>>                                                 data: "",
>>>>                                                 contentType:
>>>> "application/json; charset=utf-8",
>>>>                                                 datatype: "json",
>>>>                                                 success: function
>>>> (data) {
>>>>                                                     var items_array =
>>>> data.d;
>>>>
>>>> console.log(items_array);
>>>>                                                 }
>>>>                                             });
>>>>                                         }
>>>>                                     });
>>>>                                 </script>
>>>>
>>>>                             </dom-module>
>>>> Follow Polymer on Google+: plus.google.com/107187849809354688692
>>>> ---
>>>> You received this message because you are subscribed to the Google
>>>> Groups "Polymer" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>> an email to polymer-dev...@googlegroups.com.
>>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>>> gid/polymer-dev/edd07573-b814-44db-814b-adf8960a0e33%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/polymer-dev/edd07573-b814-44db-814b-adf8960a0e33%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>> .
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>
-Karl Tiedt

On Sat, Mar 18, 2017 at 4:14 PM, Karl Tiedt <kti...@gmail.com> wrote:

> repat="{{item in items_array}}"
>
> This doesn't have meaning to polymer...toy probably want this to be
> items=....
>
> On Mar 18, 2017 15:28, <te...@terryarnett.com> wrote:
>
>> My first post asking for help, so please be patient with a newbie ..
>>
>> Why doesn't this work?  The console.log shows that data is being returned
>> from the database.
>> Nothing show up in the <paper-item dropdown.
>>
>>
>>
>> code..........................
>>
>> <dropdown-Payee></dropdown-Payee>
>>
>>
>>                             <dom-module id="dropdown-Payee">
>>
>>                                 <template>
>>
>>                                     <paper-dropdown-menu label="Pay to
>> the Order Of :" style="width:375px;margin-top:-5px">
>>
>>                                         <paper-listbox
>> class="dropdown-content" id="ddlPayTo">
>>
>>                                             <template is="dom-repeat"
>> repat="{{item in items_array}}">
>>                                                 <paper-item
>> name="{{item.pName}}">{{item.pName}}</paper-item>
>>                                             </template>
>>
>>                                         </paper-listbox>
>>
>>                                     </paper-dropdown-menu>
>>
>>                                 </template>
>>
>>
>>                                 <script>
>>                                     Polymer({
>>                                         is: "dropdown-Payee",
>>                                         ready: function () {
>>                                             $.ajax({
>>                                                 type: "POST",
>>                                                 url:
>> "PayeeService.asmx/GetPayees",
>>                                                 data: "",
>>                                                 contentType:
>> "application/json; charset=utf-8",
>>                                                 datatype: "json",
>>                                                 success: function (data) {
>>                                                     var items_array =
>> data.d;
>>
>> console.log(items_array);
>>                                                 }
>>                                             });
>>                                         }
>>                                     });
>>                                 </script>
>>
>>                             </dom-module>
>>
>> Follow Polymer on Google+: plus.google.com/107187849809354688692
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "Polymer" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to polymer-dev+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/polymer-dev/edd07573-b814-44db-814b-adf8960a0e33%40googlegroups.com
>> <https://groups.google.com/d/msgid/polymer-dev/edd07573-b814-44db-814b-adf8960a0e33%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to polymer-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/CADNgbTH%2B%2BRc9docR0xu%3DB-iKQuixMxnJuuXyVEatXUfiEDaRng%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to