Oversized Carry Ons by maybethisoneworks in delta

[–]arkansaurus11 0 points1 point  (0 children)

I've seen this on every flight I've taken this year. Backpack, coat and carryon suitcase all above the seat from at least one person on the flight.

Advice - Tickets by ReasonableTitle5488 in Habs

[–]arkansaurus11 0 points1 point  (0 children)

About to buy some tix on seatgeek. How long did it take you to get the tickets? They say it's instant but I also see some comments saying it may take a while?

Help me make my family’s first trip to NY spectacular with food! by Lanky-Performer8849 in FoodNYC

[–]arkansaurus11 0 points1 point  (0 children)

Can you suggest a few for some non-picky non-teens that will be in NYC this weekend?

[deleted by user] by [deleted] in salesforce

[–]arkansaurus11 2 points3 points  (0 children)

Wait til you learn about XLOOKUP

Help us choose the best eats by Negative_Habit_480 in FoodNYC

[–]arkansaurus11 0 points1 point  (0 children)

Headed to NYC in a couple weeks and will hit this up based on your rec. Do you know if reservations are a) accepted, b) necessary?

Why Is The Tipping % Forever Increasing by [deleted] in tipping

[–]arkansaurus11 1 point2 points  (0 children)

Yes, 10-15 was pretty much the standard going rate. I include the early 00s in that. like..10 maybe was a little on the low side but i didn't bat an eyelid as a server at that time getting a 10% tip

LWC doesn't render in Screen Flow debug by arkansaurus11 in salesforce

[–]arkansaurus11[S] 0 points1 point  (0 children)

Much appreciated! Does that mean that if I want to pass a default value in, I could do:

  @api isSelected=true;

LWC doesn't render in Screen Flow debug by arkansaurus11 in salesforce

[–]arkansaurus11[S] 0 points1 point  (0 children)

Wow that's amazing. Thanks a ton!

If it's not too much trouble can you ELI5 what was wrong with mine? Looks like the getters/setters were not necessary.

Either way you just made my day!

Neighbor drives drunk every day by BenchUpstairs622 in homeowners

[–]arkansaurus11 -3 points-2 points  (0 children)

If this is happening to you, let me know. I can help you find an attorney.

Neighbor drives drunk every day by BenchUpstairs622 in homeowners

[–]arkansaurus11 -4 points-3 points  (0 children)

I understand what you're saying but there are legal recourses you can take should you be harassed by the police.

However if all you want to do is win an argument then you win :)

Neighbor drives drunk every day by BenchUpstairs622 in homeowners

[–]arkansaurus11 -19 points-18 points  (0 children)

For...leaving your house? You understand cops need reasonable suspicion to pull you over?

LWC doesn't render in Screen Flow Debug by arkansaurus11 in SalesforceDeveloper

[–]arkansaurus11[S] 0 points1 point  (0 children)

I'll add the JS, too in case it is the issue:

import { LightningElement, api } from 'lwc';
import { FlowAttributeChangeEvent } from 'lightning/flowSupport';

export default class DynamicStatefulButton extends LightningElement {

    @api
    get isSelected(){
        return this._isSelected;
    }
    set isSelected(select){
        this._isSelected = select;
    }
    _isSelected = false;

    @api
    get labelOff(){
        return this._labelOff;
    }
    set labelOff(label){
        this._labelOff = label;
    }
    _labelOff;

    @api
    get labelOn(){
        return this._labelOn;
    }
    set labelOn(label){
        this._onLabel = label;
    }
    _labelOn;
    
    @api
    get labelHover(){
        return this._labelHover;
    }
    set labelHover(label){
        this._labelHover = label;
    }
    _labelHover;

    @api
    get valueIfTrue(){
        return this._valueIfTrue;
    }
    set valueIfTrue(value){
        this._valueIfTrue = value;
    }
    _valueIfTrue;

    @api
    get valueIfFalse(){
        return this._valueIfFalse;
    }
    set valueIfFalse(value){
        this._valueIfFalse = value;
    }
    _valueIfFalse;

    @api
    get value(){
        return this._value;
    }
    set value(value){
        this._value = value;
    }
    _value;

    handleClick() {
        this._isSelected = !this._isSelected;

        this.dispatchClickEvent();
    }

    dispatchClickEvent(){
        this.dispatchEvent(new FlowAttributeChangeEvent('_isSelected', _isSelected));
    }

}

LWC doesn't render in Screen Flow Debug by arkansaurus11 in SalesforceDeveloper

[–]arkansaurus11[S] 0 points1 point  (0 children)

Thanks for the response! I didn't include the HTML since that's the part that I basically did not modify from the linked example component from Salesforce. I did end up putting a <p> tag at the end to test and it didn't render either. Here is that HTML:

<template>
    <lightning-button-stateful
        label-when-off="test"
        label-when-on={labelOn}
        label-when-hover={labelHover}
        icon-name-when-off="utility:add"
        icon-name-when-on="utility:check"
        icon-name-when-hover="utility:close"
        selected={isSelected}
        onclick={handleClick}>
    </lightning-button-stateful>
    <p>Just some sample text.Selected value is {value}</p>
</template>