Questions tagged [lightning]

Questions about the Lightning extension to Mozilla Thunderbird

You can find more information about the Mozilla Calendar Project at: http://www.mozilla.org/projects/calendar/lightning/

153 questions
0
votes
1 answer

Change Icon position in lightning-input for search type in LWC

I am using standard lightning-input LWC component for search field in my project. By default it shows the search icon on the left side inside the field. How can I shift this icon to right side? I am using the following code:
Vijay Mangal
  • 81
  • 1
  • 4
0
votes
1 answer

I'm using 3 filters in my lightning component to want to show data all together,i.e. record should be displayed after filtering through all filters

I have created a lightning component with 3 filters- one for searching listview, one from dropdown (picklist) and third by searching the name. I'm able to make it work by individual search but for combining have been asked to use dynamic SQL in apex…
0
votes
2 answers

How can I apply CSS in Lightning Buttons to change color

I have applied css to my lightning Button to change the color of it. And I have class named Morning inside my button .THIS.Morning{ //Mornig is class inside my button color: red; }
0
votes
1 answer

VisualForce Button not returning Selected Ids

I am converting a custom List JS button to support lighting. So, I've made changes to existing class and created a VF page and added that to the list view button. But when I run the functionality nothing seems to happen and debug logs returned Id as…
roni
  • 1
  • 2
0
votes
1 answer

How to configure LightningChart JS mouse interactions similar to TradingView

Is it possible to click on the chart and drag around like tradingview panning ? Right now its creating rectangle only. const chart = lightningChart().ChartXY() // Method for adding OHLCSeries takes one argument: seriesConstructor. const ohlcSeries =…
Gracie williams
  • 1,287
  • 2
  • 16
  • 39
0
votes
0 answers

How we can achieve navigation to another page in LWC OSS

I have two files created in LWC OSS app first file at src/client/index.html and src/client/index.js second file at src/client/index2.html and src/client/index2.js I want to navigate to index2.html when clicked on the button in my-app (LWC component)…
0
votes
1 answer

The LightningMessageChannel named boatMessageChannel was not found in the workspace

In LWC Super badge Challenge 2, we have to create a lightning message channel named BoatMessageChannel. I tried creating it with the name boatMessageChannel coz the naming should be in the camel case. But while verifying the channel I'm not able to…
Jasneet Dua
  • 3,796
  • 2
  • 10
  • 15
0
votes
1 answer

How to create custom reminders in lighning with javascript?

I am creating an extension to import todos from a CRM to thunderbird/lightning. I use the calITodo interface to create my todos : var todo = Components.classes["@mozilla.org/calendar/todo;1"].createInstance(Components.interfaces.calITodo); But I…
T_Dnzt
  • 244
  • 2
  • 8
0
votes
1 answer

JSON to be passed from Apex to Lightning Component and display it in a data table

Below is my JSON, out of which I need ID, StartTime,DurationMilliseconds,LogLength. Below is the code that I tried but it is returning only all the values in a single line.Any help would be apreciated: { "size":6, "totalSize":6, …
0
votes
3 answers

Java script is throwing parse error 'identifier'

I get this error message. Not sure why. Im not missing any semicolons Error : Parse error. 'identifier' expected newLeadClick : function(component, event, helper) { newLeadClick : function(component, event, helper) { const workspaceAPI =…
0
votes
1 answer

Opengl Lightning from object

I want to draw some light from an object (sphere in my case, its a pole with a handle and sphere on the top). The light should draw on the other objects too but from the only sphere as I mentioned. Currently, I am only getting ambient light only. I…
0
votes
1 answer

How to add a MouseDragEvent listener when drag on the Axis X?

I am trying to add a MouseDragStart listener when drag on axis x, but I can not find related API in lightning API document, can anyone suggest me which API should I use? chart
KeplerJoe
  • 7
  • 3
0
votes
1 answer

Can we use Lightning Message Service among LWCs in Lightning communities?

I am building a wizard (Next Previous button) using lightning web components for the community users. Is it possible to use Lightning message service for the communication among components? Thanks Puneet
0
votes
2 answers

Calling Apex Class from Lwc only it is getting Saved

I have create one custom object. Using a LWC component, I try to create one record but when try to save it from apex, only ID is getting printed not the Name. I am not getting why only Id is getting printed not the name. Could anybody please help me…
0
votes
1 answer

CalDav: Different category assignment in Nextcloud and Thunderbird Lightning

If creating an Event via the nextcloud Ui, the Caldav server response looks like this (output shortened): BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Mozilla.org/NONSGML Mozilla Calendar…