Dude, quit while your hole isn't too deep to crawl out of... I answered
your question and offer relevant advice. At this point you should drop it.

---------- Forwarded message ----------
From: <[email protected]>
Date: Mar 19, 2017 3:34 PM
Subject: RE: [polymer-dev] Problems with displaying results in dom-module
To: "Karl Tiedt" <[email protected]>
Cc:

Have you always been an asshole, or has it been since you took over as
> "Head Dick" for a mailing list community?
> Awesome responsibility. Highlight of your career I bet.
>
> -------- Original Message --------
> Subject: Re: [polymer-dev] Problems with displaying results in
> dom-module
> From: Karl Tiedt <[email protected]>
> Date: Sun, March 19, 2017 5:16 pm
> To: [email protected]
> Cc: Polymer <[email protected]>
>
> 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: <[email protected]>
> 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 <[email protected]>
>
>
> up yours !!!!
>
> -------- Original Message --------
> Subject: RE: Private message regarding: [polymer-dev] Problems with
> displaying results in dom-module
> From: Karl Tiedt <[email protected]>
> Date: Sun, March 19, 2017 4:56 pm
> To: [email protected]
>
> 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, <[email protected]> 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 <[email protected]>
>> Date: Sun, March 19, 2017 3:26 pm
>> To: [email protected]
>>
>> 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, <[email protected]> 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, <[email protected]> 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 [email protected].
>>>>> To view this discussion on the web visit https://groups.google.
>>>>> com/d/msgid/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 <[email protected]> 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, <[email protected]> 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 [email protected].
>>> 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 a topic in the
> Google Groups "Polymer" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/polymer-dev/r58F4BuBLSg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/polymer-dev/CADNgbTH%2B%2BRc9docR0xu%3DB-
> iKQuixMxnJuuXyVEatXUfiEDaRng%40mail.gmail.com
> <https://groups.google.com/d/msgid/polymer-dev/CADNgbTH%2B%2BRc9docR0xu%3DB-iKQuixMxnJuuXyVEatXUfiEDaRng%40mail.gmail.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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/CADNgbTHshWWRX64m%2BvQLW-U%3DAHPk0urfNNDvwfPbecgO2j1iYA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to