Questions tagged [refs]

Resilient File System

The Resilient File System (ReFS) is Microsoft's newest file system, designed to maximize data availability, scale efficiently to large data sets across diverse workloads, and provide data integrity by means of resiliency to corruption. It seeks to address an expanding set of storage scenarios and establish a foundation for future innovations.

162 questions
0
votes
2 answers

react get all children refs

I have a component that renders dynamic children, each of these children need to have a ref assigned to them e.g. ref={'childID' + index} once the children have loaded I then need a way to loop over of the children and get their refs. any way to do…
chinds
  • 1,761
  • 4
  • 28
  • 54
0
votes
1 answer

Select And Allow Ref(null) Result From Object Table

I'd like to run a function that will select a ref into an attribute from an object table, and if the table returns null then the attribute is set to null. To achieve this I tried the code. select ref(t) into self_ref from my_table where objectID =…
Coat
  • 697
  • 7
  • 18
0
votes
1 answer

React.js insert into ref of another component

I'm starting to learn react.js, and I've face a situation that I can't get an answer. This is my components structure(this is just to show hierarchy): -- ItemContainer ----- ItemList -------- ItemSingle ----- ItemForm Where ItemList and ItemForm…
rafaelmorais
  • 1,323
  • 2
  • 24
  • 49
0
votes
1 answer

How To apply css properties in react native by using refs dynamically

here is my instance I need to get the login div and hide it using refs How to achieve this ? var Text=React.createClass({ componentDidMount:function(){ console.log(this.refs.login.getDOMNode()); }, render:function(){ return (
Vikram Jakkampudi
  • 502
  • 1
  • 3
  • 16
0
votes
1 answer

Failed to push refs on a multi-user GIT Server

I am using GIT for versioning for me and my co-worker, and since the beginning I am running into an error that randomly effects either me or my co-worker. We have two different users that push/pull to our Git-Server. Both are members of the same…
0
votes
1 answer

Sencha Touch: Accessing the controls in view and calling their functions via their refrences in controller

[Sencha Touch 2.4.0] I have a problem where .setHtml and .setValue function called against the refrences of labels and textfields are not doing anything ie the change is not showcasing in UI as desired but after the line of code is executed If I run…
0
votes
1 answer

Perl Array and Hash references Handling

my problem is that i'm getting no Output at the end of Script.. All the prints while parsing are ok, but arrays at end are empty. What i'm doing wrong? Isnt this the way to handle the refs? thx 4 response my %branches = (); print "
";
my…
n0script
  • 3
  • 2
0
votes
1 answer

Sencha Touch 2 - Controller config select for class

I am new at Sencha Touch 2 and have a question (Maybe it is a noob question but I need an answer :-) ) My controller for a View looks like : Ext.define('Myapp.controller.Controller', { extend : 'Ext.app.Controller', config : { …
0
votes
1 answer

How to call a `refs` component inside an `initialize` method using Sencha Touch 2?

I would like to change the Html output of a xtype: 'label' by swiping in an image using the MVC pattern of Sencha Touch 2. The swipe event works fine, i.e. it shows the "LEFT" and "RIGHT" output on the console but for some reason the…
0
votes
1 answer

Perl - Webmin - "strict refs" in use

I have a problem with module for Webmin, and I just want to resolve it with your help! This is error that I get when I try do add new VirtualHost to Nginx module: Error - Perl execution failed Can't use string ("/home/www/website") as an ARRAY ref…
Steffffan
  • 27
  • 1
-1
votes
2 answers

How to use refs in vue js as querySelectAll

What I need is to change the color of links when scrolling up and down. How can I select Link 1/2/3 by using ref?
-1
votes
2 answers

How to use Refs Properly in React js?

I am confused with how the react refs works. The issue for me is, whenever I change the input select value, update_cart function is called. I then call actions to set the value using relevant APIs. However, currently, whenever I change the value,…
Sijan Shrestha
  • 2,136
  • 7
  • 26
  • 52
1 2 3
10
11