• Mohammed Fairoz Ulla 3
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Help will be appreciated 



Many Thanks.....
How to create a lookup field in lightning component please explain?
Hai, 

Does any one know how to view the record based on onclick function by using force:recordView in lightning components.

Many Thanks,
Help will be appreciated as soon as possible.


How do I show a div in x-small and  small devices only? If I add  classes  
slds-x-small-show-only  and slds-small-show-only ,only the last one take effect. 
 
<div class="slds-box slds-x-small-show-only slds-small-show-only">
    <label>
      <input type="checkbox" ng-model="vm.showDollar">
      Dollar Value
    </label><br>
    </div>

This is my current workaround , but this duplicate the code. 
<nav class="slds-col slds-size--1-of-1">
    <br>
    <div class="slds-box slds-x-small-show-only ">
    <label>
      <input type="checkbox" ng-model="vm.showDollar">
      Dollar Value
    </label><br>
    </div>
    <div class="slds-box slds-small-show-only ">
      <label>
        <input type="checkbox" ng-model="vm.showDollar">
        Dollar Value
      </label><br>
    </div>
   </nav>

Any pointers?

sree